From f0f369a9ab6f591d03a96d79c7e3aa9ce810a9fd Mon Sep 17 00:00:00 2001 From: Orange Date: Thu, 25 Dec 2025 02:35:50 +0300 Subject: [PATCH] warning fix --- tests/general/unit_test_collision_extra.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/general/unit_test_collision_extra.cpp b/tests/general/unit_test_collision_extra.cpp index bfbaeb6..94b49e6 100644 --- a/tests/general/unit_test_collision_extra.cpp +++ b/tests/general/unit_test_collision_extra.cpp @@ -26,7 +26,7 @@ TEST(SimplexTest, HandleLineCollinearWithXAxis) simplex.push_front(Vec3{-1, 0, 0}); Vec3 direction{}; - simplex.handle(direction); + std::ignore = simplex.handle(direction); EXPECT_NEAR(direction.x, 0.f, 1e-6f); }