This commit is contained in:
2026-05-18 10:22:36 +03:00
parent a4fac65b7c
commit 2130d02090
+2 -2
View File
@@ -123,7 +123,7 @@ namespace omath
} }
[[nodiscard]] [[nodiscard]]
static consteval MatSize size() noexcept static constexpr MatSize size() noexcept
{ {
return {Rows, Columns}; return {Rows, Columns};
} }
@@ -854,4 +854,4 @@ struct std::formatter<omath::Mat<Rows, Columns, Type, StoreType>> // NOLINT(*-dc
if constexpr (std::is_same_v<typename FormatContext::char_type, char8_t>) if constexpr (std::is_same_v<typename FormatContext::char_type, char8_t>)
return std::format_to(ctx.out(), u8"{}", mat.to_u8string()); return std::format_to(ctx.out(), u8"{}", mat.to_u8string());
} }
}; };