Page 1 of 1

typedef in irrString.h

Posted: Sun Oct 17, 2004 2:57 pm
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

Posted: Sun Oct 24, 2004 11:02 am
by niko
Thanks.