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);