Commit 5a53872d by Benjamin Kosnik Committed by Benjamin Kosnik

fstream.cc: Add _GLIBCPP_USE_WCHAR_T guards.


2002-07-31  Benjamin Kosnik  <bkoz@redhat.com>

	* src/fstream.cc: Add _GLIBCPP_USE_WCHAR_T guards.

From-SVN: r55909
parent de17e154
2002-07-31 Benjamin Kosnik <bkoz@redhat.com>
* src/fstream.cc: Add _GLIBCPP_USE_WCHAR_T guards.
2002-07-31 Simon Whomsley <whomsley@avacadcam.com> 2002-07-31 Simon Whomsley <whomsley@avacadcam.com>
* docs/html/22_locale/howto.html: Fix. * docs/html/22_locale/howto.html: Fix.
......
...@@ -100,6 +100,7 @@ namespace std ...@@ -100,6 +100,7 @@ namespace std
return __ret; return __ret;
} }
#ifdef _GLIBCPP_USE_WCHAR_T
template<> template<>
basic_filebuf<wchar_t>::int_type basic_filebuf<wchar_t>::int_type
basic_filebuf<wchar_t>::_M_underflow_common(bool __bump) basic_filebuf<wchar_t>::_M_underflow_common(bool __bump)
...@@ -188,4 +189,5 @@ namespace std ...@@ -188,4 +189,5 @@ namespace std
_M_last_overflowed = false; _M_last_overflowed = false;
return __ret; return __ret;
} }
#endif
} // namespace std } // namespace std
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