typedef in irrString.h

You discovered a bug in the engine, and you are sure that it is not a problem of your code? Just post it in here. Please read the bug posting guidelines first.
Post Reply
schick
Posts: 230
Joined: Tue Oct 07, 2003 3:55 pm
Location: Germany
Contact:

typedef in irrString.h

Post by schick »

There is a namespace problem in irrString.h.

Line

Code: Select all

00543 typedef string<c8> stringc;
should be

Code: Select all

00543 typedef string<irr::c8> stringc;
otherwise it is not useable if you don't use the irr namespace global.

greetings,

schick
Please send me an e-mail instead of a private message.
niko
Site Admin
Posts: 1759
Joined: Fri Aug 22, 2003 4:44 am
Location: Vienna, Austria
Contact:

Post by niko »

Thanks.
Post Reply