Commit 53a6ca29 by Steven King Committed by Benjamin Kosnik

locale_facets.h: Fix syntax error.


2000-04-30  Steven King <sxking@uswest.net>

        * bits/locale_facets.h: Fix syntax  error.
        * bits/std_fstream.h: ditto

From-SVN: r33599
parent cf889600
...@@ -4,6 +4,11 @@ ...@@ -4,6 +4,11 @@
* src/Makefile.in: Regenerate. * src/Makefile.in: Regenerate.
* acinclude.m4 (GLIBCPP_ENABLE_DEBUG): Revert. * acinclude.m4 (GLIBCPP_ENABLE_DEBUG): Revert.
2000-04-30 Steven King <sxking@uswest.net>
* bits/locale_facets.h: Fix syntax error.
* bits/std_fstream.h: ditto
2000-04-30 Benjamin Kosnik <bkoz@gnu.org> 2000-04-30 Benjamin Kosnik <bkoz@gnu.org>
* config/cpu/powerpc/bits/atomicity.h (__compare_and_swap): Fix typo. * config/cpu/powerpc/bits/atomicity.h (__compare_and_swap): Fix typo.
......
...@@ -750,7 +750,7 @@ namespace std ...@@ -750,7 +750,7 @@ namespace std
typedef _CharT char_type; typedef _CharT char_type;
typedef char_traits<_CharT> traits_type; typedef char_traits<_CharT> traits_type;
typedef basic_string<_CharT> string_type; typedef basic_string<_CharT> string_type;
typedef string_type::size_type size_type; typedef typename string_type::size_type size_type;
// Forward decls and Friends: // Forward decls and Friends:
friend class locale; friend class locale;
......
...@@ -59,7 +59,7 @@ namespace std { ...@@ -59,7 +59,7 @@ namespace std {
typedef __basic_file __file_type; typedef __basic_file __file_type;
typedef typename _Traits::state_type __state_type; typedef typename _Traits::state_type __state_type;
typedef codecvt<_CharT, char, __state_type> __codecvt_type; typedef codecvt<_CharT, char, __state_type> __codecvt_type;
typedef codecvt<_CharT, char, __state_type>::result __res_type; typedef typename __codecvt_type::result __res_type;
friend ios_base; // For sync_with_stdio. friend ios_base; // For sync_with_stdio.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment