Disabling MS Language extensions
-
How on earth does one get stuff to compile with VC++ with the language extensions turned off ( compiler switch /Za)? The following simple program won't compile and generates 102 error - almost all relating to the utility and xstring headers #include #include int main(int argc, char* argv[]) { std::vector m; printf("Hello World!\n"); return 0; } I am running Win2000 pro, VC++ 6.0 (no VC service packs) Any help will be greatly appreciated !!
-
How on earth does one get stuff to compile with VC++ with the language extensions turned off ( compiler switch /Za)? The following simple program won't compile and generates 102 error - almost all relating to the utility and xstring headers #include #include int main(int argc, char* argv[]) { std::vector m; printf("Hello World!\n"); return 0; } I am running Win2000 pro, VC++ 6.0 (no VC service packs) Any help will be greatly appreciated !!
You don't. It cannot be done.