I'm getting the following error when trying to compile a C++ file in VS 2003 with SP1:
fatal error C1001: INTERNAL COMPILER ERROR (compiler file 'f:\vs70builds\6030\vc\Compiler\Utc\src\P2\p2symtab.c', line 4537)
It happens on the following line in my code:
const char* p = "SomeText";
If I were to change this line to something like
const char* p = "SomeOtherText";
then it would compile just fine.
I've trying doing a complete rebuild, but the problem is still there.
Any ideas what is going wrong
Visual C++10
|