26 Nov
2004
26 Nov
'04
12:49 a.m.
Jonathan Turkanis wrote:
FWIW, I have a new library in the works which causes a lot of internal errors and compiler limit errors on VC7.1. I've found that VC8.0 handles the library much better than VC7.1, so there is hope.
That's good news :)
In the mean time, I've found that I can often prevent these errors by using the "Line Numbers Only" debugging option (/Zd), or by surrounding some of the code with
#pragma component(mintypeinfo, on) ... #pragma component(mintypeinfo, off)
This didn't help unfortunately. But the Pimpl style seems to be an usable alternative. Malte