From f0d4e60ce0e6a33189b0d12469f2d003323e86b2 Mon Sep 17 00:00:00 2001 From: Orange Date: Tue, 3 Sep 2024 21:42:25 +0300 Subject: [PATCH] fix --- tests/UnitTestMatrix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/UnitTestMatrix.cpp b/tests/UnitTestMatrix.cpp index 205bf03..fb9566f 100644 --- a/tests/UnitTestMatrix.cpp +++ b/tests/UnitTestMatrix.cpp @@ -14,7 +14,7 @@ protected: Matrix m1; Matrix m2; - constexpr void SetUp() override + void SetUp() override { m1 = Matrix(2, 2); m2 = Matrix{{1.0f, 2.0f}, {3.0f, 4.0f}};