Remove redundant type trait tests
This commit is contained in:
parent
ac2e4d49cf
commit
cb4cf4d090
@ -14,9 +14,7 @@ TEST_CASE("[Graphics] sf::Texture", runDisplayTests())
|
|||||||
{
|
{
|
||||||
STATIC_CHECK(std::is_copy_constructible_v<sf::Texture>);
|
STATIC_CHECK(std::is_copy_constructible_v<sf::Texture>);
|
||||||
STATIC_CHECK(std::is_copy_assignable_v<sf::Texture>);
|
STATIC_CHECK(std::is_copy_assignable_v<sf::Texture>);
|
||||||
STATIC_CHECK(std::is_move_constructible_v<sf::Texture>);
|
|
||||||
STATIC_CHECK(std::is_nothrow_move_constructible_v<sf::Texture>);
|
STATIC_CHECK(std::is_nothrow_move_constructible_v<sf::Texture>);
|
||||||
STATIC_CHECK(std::is_move_assignable_v<sf::Texture>);
|
|
||||||
STATIC_CHECK(std::is_nothrow_move_assignable_v<sf::Texture>);
|
STATIC_CHECK(std::is_nothrow_move_assignable_v<sf::Texture>);
|
||||||
STATIC_CHECK(std::is_nothrow_swappable_v<sf::Texture>);
|
STATIC_CHECK(std::is_nothrow_swappable_v<sf::Texture>);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user