I have a two projects, AI and Core, which used to hold a circular dependency.  I have a CoreUtilities file that I have broken up to remove this dependency, and added the functions I have removed to a new file called AIUtilities(.cpp/.h).  
I then went to the piece in my AI project that uses these functions and added #include "AI/AIUtilities.h" and changed the function call from CoreUtilities::Functionname to AIUtilities::Functionname.  Upon compile, I recieved the error given in the title.
Why! How can I fix it?