diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-09 00:40:29 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-09 00:40:29 +0000 |
commit | 542f09c7d771834b5db184b76cbaf3ee576954f3 (patch) | |
tree | 6ee20f1e724aa7748d12bae16ce110123b65f891 /libstdc++-v3/include/bits/char_traits.h | |
parent | e8562681663e19606a8b74834fe6863129c42433 (diff) | |
download | ppe42-gcc-542f09c7d771834b5db184b76cbaf3ee576954f3.tar.gz ppe42-gcc-542f09c7d771834b5db184b76cbaf3ee576954f3.zip |
2003-07-08 Benjamin Kosnik <bkoz@redhat.com>
* testsuite/ext/pod_char_traits.cc: New.
* include/ext/pod_char_traits.h: New.
* include/Makefile.am (ext_headers): Add pod_char_traits.h.
* include/Makefile.in: Regenerate.
* docs/html/21_strings/howto.html: Update.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69115 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/bits/char_traits.h')
-rw-r--r-- | libstdc++-v3/include/bits/char_traits.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libstdc++-v3/include/bits/char_traits.h b/libstdc++-v3/include/bits/char_traits.h index 5a5eca631e1..aa6d7f48a6d 100644 --- a/libstdc++-v3/include/bits/char_traits.h +++ b/libstdc++-v3/include/bits/char_traits.h @@ -56,13 +56,12 @@ namespace std * * See http://gcc.gnu.org/onlinedocs/libstdc++/21_strings/howto.html#5 * for advice on how to make use of this class for "unusual" character - * types. + * types. Also, check out include/ext/pod_char_traits.h. */ template<class _CharT> struct char_traits { typedef _CharT char_type; - // Unsigned as wint_t is unsigned. typedef unsigned long int_type; typedef streampos pos_type; typedef streamoff off_type; |