You'll have to forgive my ignorance, but I'm not used to using wide character sets in c++, but is there a way that I can use wide string literals in c++ without putting an L in front of each literal?
If so, how?
|
feedback
|
|
No, there isn't. You have to use the L prefix (or a macro such as _T() with VC++ that expands to L anyway when compiled for Unicode). | |||||||
feedback
|
|
The new C++0x Standard defines another way of doing this: | |||
feedback
|
|
Why do you not want to prefix string literals with an L? It's quite simple - strings without an L are ANSI strings (
There's also the | |||||||
feedback
|
|
on a related note.. i'm trying to do the following
which is a macro the will expand
into
this works fine in c++ visualstudio 2008 but when i compile the same code under mac Xcode (for iphone) i get the error:
EDIT: Solution
this works on both vc++ and mac xcode (gcc) | |||||||
feedback
|