From 43dc13c3de71b8d43f60f53121220c9afee02ac9 Mon Sep 17 00:00:00 2001 From: Chris Thrasher Date: Sun, 14 Jan 2024 17:21:54 -0700 Subject: [PATCH] Fix typo in `sf::Vector3` type trait tests --- test/System/Vector3.test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/System/Vector3.test.cpp b/test/System/Vector3.test.cpp index e964cd38f..33043bb44 100644 --- a/test/System/Vector3.test.cpp +++ b/test/System/Vector3.test.cpp @@ -9,7 +9,7 @@ TEMPLATE_TEST_CASE("[System] sf::Vector3", "", int, float) { SECTION("Type traits") { - STATIC_CHECK(std::is_copy_constructible_v); + STATIC_CHECK(std::is_copy_constructible_v>); STATIC_CHECK(std::is_copy_assignable_v>); STATIC_CHECK(std::is_nothrow_move_constructible_v>); STATIC_CHECK(std::is_nothrow_move_assignable_v>);