From 221fd54f5afdb39f00b82590e0c67b5f5c8345ea Mon Sep 17 00:00:00 2001 From: Orange Date: Tue, 17 Dec 2024 12:30:05 +0300 Subject: [PATCH] fixed warning related with clang --- include/omath/engines/Source/Camera.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/omath/engines/Source/Camera.hpp b/include/omath/engines/Source/Camera.hpp index b942909..1250d96 100644 --- a/include/omath/engines/Source/Camera.hpp +++ b/include/omath/engines/Source/Camera.hpp @@ -12,7 +12,7 @@ namespace omath::source { public: Camera(const Vector3& position, const ViewAngles& viewAngles, const projection::ViewPort& viewPort, - const Angle& fov, float near, float far); + const Angle& fov, float near, float far); void LookAt(const Vector3& target) override; [[nodiscard]] Mat4x4 GetViewMatrix() const override; [[nodiscard]] Mat4x4 GetProjectionMatrix() const override;