Internal Compiler Error
-
Hi, I got the following while building a project in VS.Net 2003 fatal error C1001: INTERNAL COMPILER ERROR (compiler file 'f:\vs70builds\3077\vc\Compiler\Utc\src\P2\main.c', line 148) the line that caused the error is as below
vector<Test> childObject = spChildObject;
where spChildObject is defined as
vector<Test1> spChildObject(
Is there any way to correct this code without installing a hotfix? Thank you
-
Hi, I got the following while building a project in VS.Net 2003 fatal error C1001: INTERNAL COMPILER ERROR (compiler file 'f:\vs70builds\3077\vc\Compiler\Utc\src\P2\main.c', line 148) the line that caused the error is as below
vector<Test> childObject = spChildObject;
where spChildObject is defined as
vector<Test1> spChildObject(
Is there any way to correct this code without installing a hotfix? Thank you
wait, you're doing this inside main.c ? but this is C++ ! so you need to name the file main.cpp at least !!!
[VisualCalc][Binary Guide][CommDialogs] | [Forums Guidelines]
-
Hi, I got the following while building a project in VS.Net 2003 fatal error C1001: INTERNAL COMPILER ERROR (compiler file 'f:\vs70builds\3077\vc\Compiler\Utc\src\P2\main.c', line 148) the line that caused the error is as below
vector<Test> childObject = spChildObject;
where spChildObject is defined as
vector<Test1> spChildObject(
Is there any way to correct this code without installing a hotfix? Thank you
-
wait, you're doing this inside main.c ? but this is C++ ! so you need to name the file main.cpp at least !!!
[VisualCalc][Binary Guide][CommDialogs] | [Forums Guidelines]
there is no main.c in my project. The line that is giving error is in a cpp file
-
there is no main.c in my project. The line that is giving error is in a cpp file
subramanyeswari wrote:
there is no main.c in my project
WTF is that : "fatal error C1001: INTERNAL COMPILER ERROR (compiler file 'f:\vs70builds\3077\vc\Compiler\Utc\src\P2\main.c', line 148)" if it's not a file you own, then look anyway at its line 148 to see what could make it crash from your code... also, a little code sample could help maybe.
[VisualCalc][Binary Guide][CommDialogs] | [Forums Guidelines]
-
Hi, I got the following while building a project in VS.Net 2003 fatal error C1001: INTERNAL COMPILER ERROR (compiler file 'f:\vs70builds\3077\vc\Compiler\Utc\src\P2\main.c', line 148) the line that caused the error is as below
vector<Test> childObject = spChildObject;
where spChildObject is defined as
vector<Test1> spChildObject(
Is there any way to correct this code without installing a hotfix? Thank you