From 45f4ec28a291aba044c4ba959775f80f873b11f9 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Mon, 23 Jan 2017 17:25:38 +0000 Subject: [PATCH] Removed some un-needed ifdefs git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@292806 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../std/utilities/tuple/tuple.tuple/tuple.creation/tie.pass.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/std/utilities/tuple/tuple.tuple/tuple.creation/tie.pass.cpp b/test/std/utilities/tuple/tuple.tuple/tuple.creation/tie.pass.cpp index c4c3c242d..ed443b163 100644 --- a/test/std/utilities/tuple/tuple.tuple/tuple.creation/tie.pass.cpp +++ b/test/std/utilities/tuple/tuple.tuple/tuple.creation/tie.pass.cpp @@ -31,7 +31,6 @@ int main() assert(i == 42); assert(s == "C++"); } -#if TEST_STD_VER > 11 { static constexpr int i = 42; static constexpr double f = 1.1; @@ -39,5 +38,4 @@ int main() static_assert ( std::get<0>(t) == 42, "" ); static_assert ( std::get<1>(t) == 1.1, "" ); } -#endif }