cvs.delorie.com/djgpp/bugs/show.cgi | search |
This does not work: class Testclass { public: void test(void) { cout << "едц" << endl; } }; But this does work: class Testclass { public: void test(void); }; void testclass::test(void) { cout << "едц" << endl; } /Stefan
Not a DJGPP problem, it seems. The same happens with gcc-2.7.2 on an x86 Linux box. gcc-2.8.1 on an alpha does not show it, so this may have been an old gcc bug, which is fixed now.
webmaster | delorie software privacy |
Copyright © 2010 by DJ Delorie | Updated Jul 2010 |