Path: chuka.playstation.co.uk!ganymedae From: jean-luc.deltombe@alt.lu (jean-luc.deltombe) Newsgroups: scee.yaroze.programming.codewarrior Subject: bug report Date: 12 Jun 1997 10:58:23 GMT Organization: Advanced Logic Technology (ALT) Lines: 38 Message-ID: <5nokof$rv53@chuka.playstation.co.uk> NNTP-Posting-Host: 194.154.193.201 X-Newsreader: News Xpress Version 1.0 Beta #4 I found the following MW debugger bug: If my C++ code defines a class which does not contains any data member, the resulting application wont load in the debugger (Doinf file open simply returns, without actually loading the application. So: This doesn't load: ------------------------ class CTest { public: CTest() {} }; int main(void) { CTest t; } ------------------------- While this does load: ------------------------ class CTest { public: CTest() {} private: int m_i; }; int main(void) { CTest t; } -------------------------