From b6b01845230cf8c97bde24ff8718d56299ea4ae8 Mon Sep 17 00:00:00 2001 From: Orange Date: Mon, 24 Mar 2025 06:48:43 +0300 Subject: [PATCH] fixed for clang --- source/color.cpp | 2 +- source/engines/unity_engine/formulas.cpp | 2 +- source/matrix.cpp | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/source/color.cpp b/source/color.cpp index 3e8b584..981ae73 100644 --- a/source/color.cpp +++ b/source/color.cpp @@ -2,7 +2,7 @@ // Created by vlad on 2/4/24. // -#include "omath/Color.hpp" +#include "omath/color.hpp" #include #include diff --git a/source/engines/unity_engine/formulas.cpp b/source/engines/unity_engine/formulas.cpp index 0019c4a..d3a872f 100644 --- a/source/engines/unity_engine/formulas.cpp +++ b/source/engines/unity_engine/formulas.cpp @@ -7,7 +7,7 @@ namespace omath::unity_engine { - Vector3 unity_engine::ForwardVector(const ViewAngles& angles) + Vector3 ForwardVector(const ViewAngles& angles) { const auto vec = MatRotation(angles) * MatColumnFromVector(kAbsForward); diff --git a/source/matrix.cpp b/source/matrix.cpp index 98bea2c..7782d56 100644 --- a/source/matrix.cpp +++ b/source/matrix.cpp @@ -1,6 +1,6 @@ -#include "omath/Matrix.hpp" -#include "omath/Angles.hpp" -#include "omath/Vector3.hpp" +#include "omath/matrix.hpp" +#include "omath/angles.hpp" +#include "omath/vector3.hpp" #include