aboutsummaryrefslogtreecommitdiff
path: root/libcxx
diff options
context:
space:
mode:
authorMarshall Clow <mclow.lists@gmail.com>2016-07-06 05:28:44 +0000
committerMarshall Clow <mclow.lists@gmail.com>2016-07-06 05:28:44 +0000
commit5c29783bf2e115712cacac1d3247fca16d1595be (patch)
tree83dae5c3fcd1f92c467d7e538692d0e276698282 /libcxx
parent787f3fcc6b38ca500939f8610c5bff6e3396ce75 (diff)
downloadllvm-5c29783bf2e115712cacac1d3247fca16d1595be.zip
llvm-5c29783bf2e115712cacac1d3247fca16d1595be.tar.gz
llvm-5c29783bf2e115712cacac1d3247fca16d1595be.tar.bz2
Fix typo in #ifdef, and re-enable tests now that the green-dragon bots are no more
llvm-svn: 274605
Diffstat (limited to 'libcxx')
-rw-r--r--libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp b/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp
index 8d5eaa0..0737a15 100644
--- a/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp
+++ b/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp
@@ -103,11 +103,11 @@ int main()
test_is_not_constructible<AbstractDestructor> ();
// LWG 2560 -- postpone this test until bots updated
-// test_is_not_constructible<void()> ();
-// #if TEST_STD_VERS > 11
-// test_is_not_constructible<void() const> ();
-// test_is_not_constructible<void() volatile> ();
-// test_is_not_constructible<void() &> ();
-// test_is_not_constructible<void() &&> ();
-// #endif
+ test_is_not_constructible<void()> ();
+#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
}