Home » Category » Microsoft Visual C & C++

Microsoft Visual C & C++: fatal error C1001: INTERNAL COMPILER ERROR

100| Tue, 18 Dec 2007 13:24:00 GMT| caius| Comments (1)
Hi,

I am trying to compile VC++ 6.0 code in VC++ .NET 2003. I get a

fatal error C1001: INTERNAL COMPILER ERROR

at the line marked '//error in this line' (code shown below)

I was hoping somebody could help me out or point me the right direction.

Thanks in advance,

Caius

--

typedef struct clip

{

int minDiode;

int maxDiode;

int minScanLine;

int maxScanLine;

struct clip FitArea(struct clip bs) // error in this line

{

struct clip fit;


fit.minDiode = MIN(minDiode, bs.minDiode);

fit.maxDiode = MAX(maxDiode, bs.maxDiode);

fit.minScanLine = MIN(minScanLine, bs.minScanLine);

fit.maxScanLine = MAX(maxScanLine, bs.maxScanLine);

return fit;

}

HEIGHT_DATA *pBagHeightData;

} BAGSPACE;

Keywords & Tags: fatal, error, c1001, internal, compiler, microsoft, visual c++, vc

URL: http://www.7prog.com/visual-c-c++/109590/
 
«« Prev - Next »» 1 helpful answers below.

Internal compiler errors are compiler bugs. Try modifying the code causing the error. Also, please log the bug at http://lab.msdn.microsoft.com/productfeedback/default.aspx and folks should be able to pass a workaround if exists.

Thanks in advance for taking the time to log the issue.

Thanks,

Ayman Shoukry

VC++ Team

aymanshoukry | Sat, 08 Sep 2007 06:39:00 GMT |

Microsoft Visual C & C++ Hot Answers

Microsoft Visual C & C++ New questions

Microsoft Visual C & C++ Related Categories