diff options
author | Eric Fiselier <eric@efcs.ca> | 2017-04-19 00:56:32 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2017-04-19 00:56:32 +0000 |
commit | 95f8e6aa5529396ccfc81402ae3fc518571292ee (patch) | |
tree | ee192e44a48d0a1c772e6e187665e7536fe645b7 /libcxx/test/std/utilities/tuple/tuple.tuple | |
parent | ff6922ad23ba270ffa831aad44cb91a7ad0fc1ed (diff) | |
download | bcm5719-llvm-95f8e6aa5529396ccfc81402ae3fc518571292ee.tar.gz bcm5719-llvm-95f8e6aa5529396ccfc81402ae3fc518571292ee.zip |
Cleanup _LIBCPP_HAS_NO_<c++11-feature> in the utilities library
llvm-svn: 300635
Diffstat (limited to 'libcxx/test/std/utilities/tuple/tuple.tuple')
-rw-r--r-- | libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/default.pass.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/default.pass.cpp b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/default.pass.cpp index eeaa8a24ee6..fa2f116f771 100644 --- a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/default.pass.cpp +++ b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/default.pass.cpp @@ -86,7 +86,6 @@ int main() static_assert(!noexcept(std::tuple<NoExceptDefault, ThrowingDefault>()), ""); static_assert(!noexcept(std::tuple<ThrowingDefault, ThrowingDefault>()), ""); } -#ifndef _LIBCPP_HAS_NO_CONSTEXPR { constexpr std::tuple<> t; } @@ -106,5 +105,4 @@ int main() IllFormedDefault v(0); std::tuple<IllFormedDefault> t(v); } -#endif } |