This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: where are char_traits<wchar_t> instances built ?
- From: Paolo Carlini <pcarlini at suse dot de>
- To: espie at nerim dot net
- Cc: gcc at gcc dot gnu dot org
- Date: Mon, 29 Dec 2003 15:15:42 +0100
- Subject: Re: where are char_traits<wchar_t> instances built ?
- References: <20031229140434.GA23567@tetto.gentiane.org>
Marc Espie wrote:
Looking in my libstdc++, I see no instance of
std::char_traits<T>::compare, either for T=char nor T=wchar.
Hummm. Could you provide additional information on the actual error?
Usually, ../include/c++/3.3.2/bits/char_traits.h contains struct
char_traits and its specializations for char and wchar_t, quite
straightforward, by the way (in 3.3.x, at least): as you can easily
imagine they boil down to just memcmp, memchr, memmove and so on...
Paolo.