diff options
| author | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2017-07-29 00:55:10 +0000 |
|---|---|---|
| committer | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2017-07-29 00:55:10 +0000 |
| commit | 4159db7698d3d6aa5e0f2d920be3847716b05800 (patch) | |
| tree | 65e739c70519a0767cc27f13f679fcd1b09fc8e4 /libcxx/test/std/containers/sequences/vector.bool/construct_default.pass.cpp | |
| parent | 8980b8ad9c9a0060698fc448dd9de1e2e1a48447 (diff) | |
| download | bcm5719-llvm-4159db7698d3d6aa5e0f2d920be3847716b05800.tar.gz bcm5719-llvm-4159db7698d3d6aa5e0f2d920be3847716b05800.zip | |
[libcxx] [test] Untabify, NFC.
llvm-svn: 309464
Diffstat (limited to 'libcxx/test/std/containers/sequences/vector.bool/construct_default.pass.cpp')
| -rw-r--r-- | libcxx/test/std/containers/sequences/vector.bool/construct_default.pass.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/test/std/containers/sequences/vector.bool/construct_default.pass.cpp b/libcxx/test/std/containers/sequences/vector.bool/construct_default.pass.cpp index a18ba8fbaab..0f51c219ee4 100644 --- a/libcxx/test/std/containers/sequences/vector.bool/construct_default.pass.cpp +++ b/libcxx/test/std/containers/sequences/vector.bool/construct_default.pass.cpp @@ -24,9 +24,9 @@ void test0() { #if TEST_STD_VER > 14 - static_assert((noexcept(C{})), "" ); + static_assert((noexcept(C{})), "" ); #elif TEST_STD_VER >= 11 - static_assert((noexcept(C()) == noexcept(typename C::allocator_type())), "" ); + static_assert((noexcept(C()) == noexcept(typename C::allocator_type())), "" ); #endif C c; LIBCPP_ASSERT(c.__invariants()); @@ -45,9 +45,9 @@ void test1(const typename C::allocator_type& a) { #if TEST_STD_VER > 14 - static_assert((noexcept(C{typename C::allocator_type{}})), "" ); + static_assert((noexcept(C{typename C::allocator_type{}})), "" ); #elif TEST_STD_VER >= 11 - static_assert((noexcept(C(typename C::allocator_type())) == std::is_nothrow_copy_constructible<typename C::allocator_type>::value), "" ); + static_assert((noexcept(C(typename C::allocator_type())) == std::is_nothrow_copy_constructible<typename C::allocator_type>::value), "" ); #endif C c(a); LIBCPP_ASSERT(c.__invariants()); |

