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;