Skip to content

Commit

Permalink
fix header set compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
petiaccja committed Sep 16, 2024
1 parent d63e54c commit ebe524d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/Mathter/Vector/Math.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ namespace impl {
using Scalar = scalar_type_t<Vec>;
constexpr auto Dim = dimension_v<Vec>;
Vec result;
Matrix<Scalar, Dim - 1, Dim - 1> detCalc;
Matrix<Scalar, Dim - 1, Dim - 1, eMatrixOrder::FOLLOW_VECTOR, eMatrixLayout::COLUMN_MAJOR, false> detCalc;

std::array<std::optional<std::reference_wrapper<const Vec>>, Dim - 1> vectors;
auto [argIt, outIt] = std::tuple(first, vectors.begin());
Expand Down

0 comments on commit ebe524d

Please sign in to comment.