This commit is contained in:
2026-06-14 22:30:26 +03:00
parent bb618f692f
commit 136cd39496
+1 -1
View File
@@ -398,7 +398,7 @@ namespace omath
{ {
const auto det = determinant(); const auto det = determinant();
if (std::abs(det) < std::numeric_limits<Type>::epsilon()) if (internal::abs(det) < std::numeric_limits<Type>::epsilon())
return std::nullopt; return std::nullopt;
const auto transposed_mat = transposed(); const auto transposed_mat = transposed();