aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/ext/enc_filebuf.h
diff options
context:
space:
mode:
Diffstat (limited to 'libstdc++-v3/include/ext/enc_filebuf.h')
-rw-r--r--libstdc++-v3/include/ext/enc_filebuf.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libstdc++-v3/include/ext/enc_filebuf.h b/libstdc++-v3/include/ext/enc_filebuf.h
index 81dad12..80c3b5a 100644
--- a/libstdc++-v3/include/ext/enc_filebuf.h
+++ b/libstdc++-v3/include/ext/enc_filebuf.h
@@ -39,7 +39,7 @@ namespace __gnu_cxx
struct enc_char_traits: public std::char_traits<_CharT>
{
typedef std::__enc_traits state_type;
- typedef typename std::fpos<state_type> pos_type;
+ typedef typename std::fpos<state_type> pos_type;
};
template<typename _CharT>
@@ -47,13 +47,13 @@ namespace __gnu_cxx
: public std::basic_filebuf<_CharT, enc_char_traits<_CharT> >
{
public:
- typedef enc_char_traits<_CharT> traits_type;
- typedef typename traits_type::state_type state_type;
- typedef typename traits_type::pos_type pos_type;
-
+ typedef enc_char_traits<_CharT> traits_type;
+ typedef typename traits_type::state_type state_type;
+ typedef typename traits_type::pos_type pos_type;
+
enc_filebuf(state_type& __state)
: std::basic_filebuf<_CharT, enc_char_traits<_CharT> >()
- {
+ {
// Set state type to something useful.
// Something more than copyconstructible is needed here, so
// require default and copy constructible + assignment operator.