mirror of
https://github.com/llvm-mirror/libcxx.git
synced 2025-10-23 01:18:52 +08:00
[libcxx] [test] Untabify, NFC.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@309464 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -24,9 +24,9 @@ test()
|
||||
{
|
||||
{
|
||||
#if TEST_STD_VER > 14
|
||||
static_assert((noexcept(S{})), "" );
|
||||
static_assert((noexcept(S{})), "" );
|
||||
#elif TEST_STD_VER >= 11
|
||||
static_assert((noexcept(S()) == noexcept(typename S::allocator_type())), "" );
|
||||
static_assert((noexcept(S()) == noexcept(typename S::allocator_type())), "" );
|
||||
#endif
|
||||
S s;
|
||||
LIBCPP_ASSERT(s.__invariants());
|
||||
@@ -37,9 +37,9 @@ test()
|
||||
}
|
||||
{
|
||||
#if TEST_STD_VER > 14
|
||||
static_assert((noexcept(S{typename S::allocator_type{}})), "" );
|
||||
static_assert((noexcept(S{typename S::allocator_type{}})), "" );
|
||||
#elif TEST_STD_VER >= 11
|
||||
static_assert((noexcept(S(typename S::allocator_type())) == std::is_nothrow_copy_constructible<typename S::allocator_type>::value), "" );
|
||||
static_assert((noexcept(S(typename S::allocator_type())) == std::is_nothrow_copy_constructible<typename S::allocator_type>::value), "" );
|
||||
#endif
|
||||
S s(typename S::allocator_type(5));
|
||||
LIBCPP_ASSERT(s.__invariants());
|
||||
@@ -58,9 +58,9 @@ test2()
|
||||
{
|
||||
{
|
||||
#if TEST_STD_VER > 14
|
||||
static_assert((noexcept(S{})), "" );
|
||||
static_assert((noexcept(S{})), "" );
|
||||
#elif TEST_STD_VER >= 11
|
||||
static_assert((noexcept(S()) == noexcept(typename S::allocator_type())), "" );
|
||||
static_assert((noexcept(S()) == noexcept(typename S::allocator_type())), "" );
|
||||
#endif
|
||||
S s;
|
||||
LIBCPP_ASSERT(s.__invariants());
|
||||
@@ -71,9 +71,9 @@ test2()
|
||||
}
|
||||
{
|
||||
#if TEST_STD_VER > 14
|
||||
static_assert((noexcept(S{typename S::allocator_type{}})), "" );
|
||||
static_assert((noexcept(S{typename S::allocator_type{}})), "" );
|
||||
#elif TEST_STD_VER >= 11
|
||||
static_assert((noexcept(S(typename S::allocator_type())) == std::is_nothrow_copy_constructible<typename S::allocator_type>::value), "" );
|
||||
static_assert((noexcept(S(typename S::allocator_type())) == std::is_nothrow_copy_constructible<typename S::allocator_type>::value), "" );
|
||||
#endif
|
||||
S s(typename S::allocator_type{});
|
||||
LIBCPP_ASSERT(s.__invariants());
|
||||
|
Reference in New Issue
Block a user