removed finals

This commit is contained in:
2024-09-03 19:06:18 +03:00
parent 57ff88af6c
commit fd080606dd
4 changed files with 4 additions and 4 deletions

View File

@@ -7,7 +7,7 @@
using namespace omath;
class UnitTestColor final : public ::testing::Test
class UnitTestColor : public ::testing::Test
{
protected:
Color color1;

View File

@@ -8,7 +8,7 @@
using namespace omath;
class UnitTestMatrix final : public ::testing::Test
class UnitTestMatrix : public ::testing::Test
{
protected:
Matrix m1;

View File

@@ -9,7 +9,7 @@
using namespace omath;
class UnitTestVector2 final : public ::testing::Test
class UnitTestVector2 : public ::testing::Test
{
protected:
Vector2 v1;

View File

@@ -7,7 +7,7 @@
using namespace omath;
class UnitTestVector3 final : public ::testing::Test
class UnitTestVector3 : public ::testing::Test
{
protected:
Vector3 v1;