diff --git a/include/omath/linear_algebra/mat.hpp b/include/omath/linear_algebra/mat.hpp index 060492f..948e9df 100644 --- a/include/omath/linear_algebra/mat.hpp +++ b/include/omath/linear_algebra/mat.hpp @@ -123,7 +123,7 @@ namespace omath } [[nodiscard]] - static consteval MatSize size() noexcept + static constexpr MatSize size() noexcept { return {Rows, Columns}; } @@ -854,4 +854,4 @@ struct std::formatter> // NOLINT(*-dc if constexpr (std::is_same_v) return std::format_to(ctx.out(), u8"{}", mat.to_u8string()); } -}; \ No newline at end of file +};