From 88ce5e6b8c1cfec33647b5ac97aecb6093853e72 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); }