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?
|
3
|
|
|
|
|
|
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). |
||||||
|
|
|
In Visual C++ you can set the character set so that you don't have to use L in front of your string literals: Project -> Properties -> Configuration Properties: This will probably reduce portability of your code though, so use with caution. |
||
|
|
|
|
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) |
|||
|
|
The new C++0x Standard defines another way of doing this: |
||
|
|
|
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 |
||||||
|