mirror of
https://github.com/TartanLlama/expected.git
synced 2025-08-03 19:04:29 +02:00
Fixed copy-paste error
This commit is contained in:
@@ -68,11 +68,11 @@ TEST_CASE("Constructors", "[constructors]") {
|
|||||||
REQUIRE(std::is_move_constructible<decltype(e)>::value);
|
REQUIRE(std::is_move_constructible<decltype(e)>::value);
|
||||||
REQUIRE(std::is_copy_assignable<decltype(e)>::value);
|
REQUIRE(std::is_copy_assignable<decltype(e)>::value);
|
||||||
REQUIRE(std::is_move_assignable<decltype(e)>::value);
|
REQUIRE(std::is_move_assignable<decltype(e)>::value);
|
||||||
REQUIRE(!IS_TRIVIALLY_COPY_CONSTRUCTIBLE(decltype(e)));
|
REQUIRE(IS_TRIVIALLY_COPY_CONSTRUCTIBLE(decltype(e)));
|
||||||
REQUIRE(!IS_TRIVIALLY_COPY_ASSIGNABLE(decltype(e)));
|
REQUIRE(IS_TRIVIALLY_COPY_ASSIGNABLE(decltype(e)));
|
||||||
# if !defined(TL_EXPECTED_GCC49)
|
# if !defined(TL_EXPECTED_GCC49)
|
||||||
REQUIRE(!std::is_trivially_move_constructible<decltype(e)>::value);
|
REQUIRE(std::is_trivially_move_constructible<decltype(e)>::value);
|
||||||
REQUIRE(!std::is_trivially_move_assignable<decltype(e)>::value);
|
REQUIRE(std::is_trivially_move_assignable<decltype(e)>::value);
|
||||||
# endif
|
# endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user