mirror of
https://github.com/SFML/SFML.git
synced 2024-11-24 20:31:05 +08:00
Fix typo in sf::Vector3<T>
type trait tests
This commit is contained in:
parent
c919ad533d
commit
43dc13c3de
@ -9,7 +9,7 @@ TEMPLATE_TEST_CASE("[System] sf::Vector3", "", int, float)
|
||||
{
|
||||
SECTION("Type traits")
|
||||
{
|
||||
STATIC_CHECK(std::is_copy_constructible_v<sf::Vector3i>);
|
||||
STATIC_CHECK(std::is_copy_constructible_v<sf::Vector3<TestType>>);
|
||||
STATIC_CHECK(std::is_copy_assignable_v<sf::Vector3<TestType>>);
|
||||
STATIC_CHECK(std::is_nothrow_move_constructible_v<sf::Vector3<TestType>>);
|
||||
STATIC_CHECK(std::is_nothrow_move_assignable_v<sf::Vector3<TestType>>);
|
||||
|
Loading…
Reference in New Issue
Block a user