diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2017-01-23 17:25:38 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2017-01-23 17:25:38 +0000 |
commit | faebbf7e4d3fd76a0333a0db0bee64254f257093 (patch) | |
tree | 3db2e0bffd01fa8b04c8b9be785c8bfd5fd70cb3 | |
parent | e7e8f80be1f9c9edfecd51964392b836622e4fcc (diff) | |
download | bcm5719-llvm-faebbf7e4d3fd76a0333a0db0bee64254f257093.tar.gz bcm5719-llvm-faebbf7e4d3fd76a0333a0db0bee64254f257093.zip |
Removed some un-needed ifdefs
llvm-svn: 292806
-rw-r--r-- | libcxx/test/std/utilities/tuple/tuple.tuple/tuple.creation/tie.pass.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.creation/tie.pass.cpp b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.creation/tie.pass.cpp index c4c3c242d8f..ed443b163b8 100644 --- a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.creation/tie.pass.cpp +++ b/libcxx/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 } |