From 9a4fb672895fe8bb861089e2730f59a299fdd31e Mon Sep 17 00:00:00 2001 From: Orange Date: Thu, 2 Jan 2025 20:32:25 +0300 Subject: [PATCH] hotfix --- include/omath/Angle.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/omath/Angle.hpp b/include/omath/Angle.hpp index e5af33f..4ae0dee 100644 --- a/include/omath/Angle.hpp +++ b/include/omath/Angle.hpp @@ -19,7 +19,7 @@ namespace omath class Angle { Type m_angle; - constexpr explicit Angle(const Type& degrees) + constexpr Angle(const Type& degrees) { if constexpr (flags == AngleFlags::Normalized) m_angle = angles::WrapAngle(degrees, min, max);