[libcxx-commits] [PATCH] D119263: [libc++][nfc] Use TEST_HAS_NO_WIDE_CHARACTERS.

Mark de Wever via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Wed Feb 9 08:10:22 PST 2022


This revision was automatically updated to reflect the committed changes.
Mordante marked an inline comment as done.
Closed by commit rGd9d2ebbfcb20: [libc++][nfc] Use TEST_HAS_NO_WIDE_CHARACTERS. (authored by Mordante).

Changed prior to commit:
  https://reviews.llvm.org/D119263?vs=406888&id=407163#toc

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D119263/new/

https://reviews.llvm.org/D119263

Files:
  libcxx/test/std/input.output/string.streams/istringstream/istringstream.cons/default.pass.cpp
  libcxx/test/std/input.output/string.streams/ostringstream/ostringstream.cons/default.pass.cpp
  libcxx/test/std/input.output/string.streams/stringstream.cons/default.pass.cpp


Index: libcxx/test/std/input.output/string.streams/stringstream.cons/default.pass.cpp
===================================================================
--- libcxx/test/std/input.output/string.streams/stringstream.cons/default.pass.cpp
+++ libcxx/test/std/input.output/string.streams/stringstream.cons/default.pass.cpp
@@ -60,7 +60,7 @@
 
 #if TEST_STD_VER >= 11
     test<std::stringstream>();
-#   ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS
+#  ifndef TEST_HAS_NO_WIDE_CHARACTERS
     test<std::wstringstream>();
 #   endif
 #endif
Index: libcxx/test/std/input.output/string.streams/ostringstream/ostringstream.cons/default.pass.cpp
===================================================================
--- libcxx/test/std/input.output/string.streams/ostringstream/ostringstream.cons/default.pass.cpp
+++ libcxx/test/std/input.output/string.streams/ostringstream/ostringstream.cons/default.pass.cpp
@@ -60,7 +60,7 @@
 
 #if TEST_STD_VER >= 11
     test<std::ostringstream>();
-#   ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS
+#  ifndef TEST_HAS_NO_WIDE_CHARACTERS
     test<std::wostringstream>();
 #   endif
 #endif
Index: libcxx/test/std/input.output/string.streams/istringstream/istringstream.cons/default.pass.cpp
===================================================================
--- libcxx/test/std/input.output/string.streams/istringstream/istringstream.cons/default.pass.cpp
+++ libcxx/test/std/input.output/string.streams/istringstream/istringstream.cons/default.pass.cpp
@@ -60,7 +60,7 @@
 
 #if TEST_STD_VER >= 11
     test<std::istringstream>();
-#   ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS
+#  ifndef TEST_HAS_NO_WIDE_CHARACTERS
     test<std::wistringstream>();
 #   endif
 #endif


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D119263.407163.patch
Type: text/x-patch
Size: 1684 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220209/b105aec2/attachment-0001.bin>


More information about the libcxx-commits mailing list