 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Frank A. Uepping Guest
|
Posted: Sat Apr 09, 2005 8:30 pm Post subject: Wide character support and exceptions |
|
|
Hi,
C++ has wide character support. For example, for strings we can do
basic_string<wchar_t>.
But if I try to throw a standard exception with a wide string as
parameter I get an error, e.g.:
throw logic_error(basic_string<wchar_t>(L"foo"));
Apparently, the standard does not support wide characters for the
standard exceptions (i.e., we can not do something like this:
throw logic_error<wchar_t>(basic_string<wchar_t>(L"foo"));
Why is this so designed, and how are standard exceptions usually
used in wide character applications?
Thanks
FAU
---
[ comp.std.c++ is moderated. To submit articles, try just posting with ]
[ your news-reader. If that fails, use mailto:std-c++@ncar.ucar.edu ]
[ --- Please see the FAQ before posting. --- ]
[ FAQ: http://www.jamesd.demon.co.uk/csc/faq.html ]
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|