From 5bed466a7e946b6fdfa04167913a17d9a787b791 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Alexandre=20Boissonneault?= Date: Sat, 2 Dec 2017 20:18:26 -0500 Subject: [PATCH] Fixed copy-paste error --- tests/constructors.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/constructors.cpp b/tests/constructors.cpp index c164270..ad669eb 100644 --- a/tests/constructors.cpp +++ b/tests/constructors.cpp @@ -68,11 +68,11 @@ TEST_CASE("Constructors", "[constructors]") { REQUIRE(std::is_move_constructible::value); REQUIRE(std::is_copy_assignable::value); REQUIRE(std::is_move_assignable::value); - REQUIRE(!IS_TRIVIALLY_COPY_CONSTRUCTIBLE(decltype(e))); - REQUIRE(!IS_TRIVIALLY_COPY_ASSIGNABLE(decltype(e))); + REQUIRE(IS_TRIVIALLY_COPY_CONSTRUCTIBLE(decltype(e))); + REQUIRE(IS_TRIVIALLY_COPY_ASSIGNABLE(decltype(e))); # if !defined(TL_EXPECTED_GCC49) - REQUIRE(!std::is_trivially_move_constructible::value); - REQUIRE(!std::is_trivially_move_assignable::value); + REQUIRE(std::is_trivially_move_constructible::value); + REQUIRE(std::is_trivially_move_assignable::value); # endif }