From 53a420fba21cf1644972b34dcd811a43cdb8368d Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Mon, 2 Jan 2017 19:18:58 +0000 Subject: Vendor import of libc++ trunk r290819: https://llvm.org/svn/llvm-project/libcxx/trunk@290819 --- .../tuple/tuple.tuple/tuple.apply/make_from_tuple.pass.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/std/utilities/tuple/tuple.tuple/tuple.apply/make_from_tuple.pass.cpp') diff --git a/test/std/utilities/tuple/tuple.tuple/tuple.apply/make_from_tuple.pass.cpp b/test/std/utilities/tuple/tuple.tuple/tuple.apply/make_from_tuple.pass.cpp index 143ae195e6f4..eee1dd88253c 100644 --- a/test/std/utilities/tuple/tuple.tuple/tuple.apply/make_from_tuple.pass.cpp +++ b/test/std/utilities/tuple/tuple.tuple/tuple.apply/make_from_tuple.pass.cpp @@ -175,14 +175,14 @@ void test_noexcept() { Tuple tup; ((void)tup); Tuple const& ctup = tup; ((void)ctup); ASSERT_NOT_NOEXCEPT(std::make_from_tuple(ctup)); - ASSERT_NOEXCEPT(std::make_from_tuple(std::move(tup))); + LIBCPP_ASSERT_NOEXCEPT(std::make_from_tuple(std::move(tup))); } { using Tuple = std::pair; Tuple tup; ((void)tup); Tuple const& ctup = tup; ((void)ctup); ASSERT_NOT_NOEXCEPT(std::make_from_tuple(ctup)); - ASSERT_NOEXCEPT(std::make_from_tuple(std::move(tup))); + LIBCPP_ASSERT_NOEXCEPT(std::make_from_tuple(std::move(tup))); } { using Tuple = std::tuple; @@ -192,7 +192,7 @@ void test_noexcept() { { using Tuple = std::tuple; Tuple tup; ((void)tup); - ASSERT_NOEXCEPT(std::make_from_tuple(tup)); + LIBCPP_ASSERT_NOEXCEPT(std::make_from_tuple(tup)); } { using Tuple = std::array; @@ -202,7 +202,7 @@ void test_noexcept() { { using Tuple = std::array; Tuple tup; ((void)tup); - ASSERT_NOEXCEPT(std::make_from_tuple(tup)); + LIBCPP_ASSERT_NOEXCEPT(std::make_from_tuple(tup)); } } -- cgit v1.2.3