fix build fail with O3
Some checks failed
Run tests / Explore-Gitea-Actions (push) Failing after 1m24s
Build Docs With Doxygen / Explore-Gitea-Actions (push) Successful in 30s

This commit is contained in:
2024-06-17 02:53:32 -04:00
parent a5c96e8cae
commit 76f5fad0bf
2 changed files with 3 additions and 2 deletions

View File

@@ -177,8 +177,8 @@ namespace J3ML::Math
#pragma region Math Functions
inline float Radians(float degrees);
inline float Degrees(float radians);
float Radians(float degrees);
float Degrees(float radians);
struct NumberRange

View File

@@ -1,5 +1,6 @@
#include <gtest/gtest.h>
#include <J3ML/LinearAlgebra/Matrix3x3.h>
#include <J3ML/LinearAlgebra/Matrix4x4.h>
using namespace J3ML::LinearAlgebra;