diff options
Diffstat (limited to 'libstdc++-v3/include/bits')
-rw-r--r-- | libstdc++-v3/include/bits/char_traits.h | 3 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/ios_base.h | 1 |
2 files changed, 1 insertions, 3 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; diff --git a/libstdc++-v3/include/bits/ios_base.h b/libstdc++-v3/include/bits/ios_base.h index 34600cc3de7..3cc4ac1fd33 100644 --- a/libstdc++-v3/include/bits/ios_base.h +++ b/libstdc++-v3/include/bits/ios_base.h @@ -876,7 +876,6 @@ namespace std __base.setf(ios_base::scientific, ios_base::floatfield); return __base; } - } // namespace std #endif /* _IOS_BASE_H */ |