delorie.com/djgpp/bugs/show.cgi   search  
Bug 000259

When Created: 11/26/1998 12:00:04
Against DJGPP version: 2.01
By whom: stekman@earthling.net
Abstract: International characters (едц) does not work in strings in class-definitions
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

Note added: 04/20/1999 10:00:34
By whom: broeker@physik.rwth-aachen.de
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.

Closed on 04/20/1999 10:00:30: bug not in DJGPP
By whom: broeker@physik.rwth-aachen.de



  webmaster     delorie software   privacy  
  Copyright © 2010   by DJ Delorie     Updated Jul 2010