[libcxx] r274882 - Fix typo in #ifdef; leave tests commented out b/c gcc 4.8 harks on them.

Marshall Clow via cfe-commits cfe-commits at lists.llvm.org
Fri Jul 8 09:59:54 PDT 2016


Author: marshall
Date: Fri Jul  8 11:59:54 2016
New Revision: 274882

URL: http://llvm.org/viewvc/llvm-project?rev=274882&view=rev
Log:
Fix typo in #ifdef; leave tests commented out b/c gcc 4.8 harks on them.


Modified:
    libcxx/trunk/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp

Modified: libcxx/trunk/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp?rev=274882&r1=274881&r2=274882&view=diff
==============================================================================
--- libcxx/trunk/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp (original)
+++ libcxx/trunk/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp Fri Jul  8 11:59:54 2016
@@ -104,10 +104,10 @@ int main()
 
 //  LWG 2560  -- postpone this test until bots updated
 //     test_is_not_constructible<void()> ();
-// #if TEST_STD_VERS > 11
+#if TEST_STD_VER > 11
 //     test_is_not_constructible<void() const> ();
 //     test_is_not_constructible<void() volatile> ();
 //     test_is_not_constructible<void() &> ();
 //     test_is_not_constructible<void() &&> ();
-// #endif
+#endif
 }




More information about the cfe-commits mailing list