Article ID: 119519
Article Last Modified on 7/5/2005
class MLUInt64 {
public:
// If this following inline method is commented out the correct code
// will be generated.
const MLUInt64 & operator= (const MLUInt64 &u64)
{fVal[0] = u64.fVal[0];
fVal[1] = u64.fVal[1];
return *this;}
int fVal[2];
}; // class MLUInt64
const MLUInt64 kZeroMLUInt64 = {1,1};
void main(void) {
MLUInt64 kTempMLUInt64;
kTempMLUInt64 = kZeroMLUInt64;
}
Additional query words: 8.00 9.00 1.00 2.00
Keywords: kbcpponly kbcompiler KB119519