Example:
class CTest{ // Invalid Ctor definition, does not cause error // and won't be called when creating an instance of the class! void CTest() { Trace("Ctor Call!\r\n"); }}
Could that be a candidate for a compiler improvement? I think a C++ compiler will generate an error in this case.
Regards,
Thomas