aboutsummaryrefslogtreecommitdiff
path: root/libcxx/modules/std/ostream.inc
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/modules/std/ostream.inc')
-rw-r--r--libcxx/modules/std/ostream.inc10
1 files changed, 5 insertions, 5 deletions
diff --git a/libcxx/modules/std/ostream.inc b/libcxx/modules/std/ostream.inc
index 0e0e2d54..e124e66 100644
--- a/libcxx/modules/std/ostream.inc
+++ b/libcxx/modules/std/ostream.inc
@@ -8,11 +8,11 @@
//===----------------------------------------------------------------------===//
export namespace std {
-#ifndef _LIBCPP_HAS_NO_LOCALIZATION
+#if _LIBCPP_HAS_LOCALIZATION
using std::basic_ostream;
using std::ostream;
-# ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS
+# if _LIBCPP_HAS_WIDE_CHARACTERS
using std::wostream;
# endif
@@ -33,10 +33,10 @@ export namespace std {
using std::println;
using std::vprint_nonunicode;
-# ifndef _LIBCPP_HAS_NO_UNICODE
+# if _LIBCPP_HAS_UNICODE
using std::vprint_unicode;
-# endif // _LIBCPP_HAS_NO_UNICODE
+# endif // _LIBCPP_HAS_UNICODE
# endif // _LIBCPP_STD_VER >= 23
-#endif // _LIBCPP_HAS_NO_LOCALIZATION
+#endif // _LIBCPP_HAS_LOCALIZATION
} // namespace std