diff options
Diffstat (limited to 'libcxx/modules/std/sstream.inc')
-rw-r--r-- | libcxx/modules/std/sstream.inc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libcxx/modules/std/sstream.inc b/libcxx/modules/std/sstream.inc index 2218001..99ec3b3 100644 --- a/libcxx/modules/std/sstream.inc +++ b/libcxx/modules/std/sstream.inc @@ -8,35 +8,35 @@ //===----------------------------------------------------------------------===// export namespace std { -#ifndef _LIBCPP_HAS_NO_LOCALIZATION +#if _LIBCPP_HAS_LOCALIZATION using std::basic_stringbuf; using std::swap; using std::stringbuf; -# ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS +# if _LIBCPP_HAS_WIDE_CHARACTERS using std::wstringbuf; # endif using std::basic_istringstream; using std::istringstream; -# ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS +# if _LIBCPP_HAS_WIDE_CHARACTERS using std::wistringstream; # endif using std::basic_ostringstream; using std::ostringstream; -# ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS +# if _LIBCPP_HAS_WIDE_CHARACTERS using std::wostringstream; # endif using std::basic_stringstream; using std::stringstream; -# ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS +# if _LIBCPP_HAS_WIDE_CHARACTERS using std::wstringstream; # endif -#endif // _LIBCPP_HAS_NO_LOCALIZATION +#endif // _LIBCPP_HAS_LOCALIZATION } // namespace std |