Removed some unused variables

This commit is contained in:
2026-08-11 11:19:56 -04:00
parent 48b016d8b7
commit ea29ea27f2
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -76,7 +76,8 @@ TEST_CASE("Timing Tests", "Matrix") {
SECTION("Determinant") {
for (uint32_t i{0}; i < 1000000; i++) {
float det1 = mat4.Det();
float det = mat4.Det();
(void)det;
}
}