From 17d857ecf25e4a92fc4277736ff778f9d970e95e Mon Sep 17 00:00:00 2001 From: lisyarus Date: Sat, 25 Oct 2025 15:20:59 +0300 Subject: [PATCH] Use util::array as the storage for math types with dynamic size --- libs/math/include/psemek/math/detail/array.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libs/math/include/psemek/math/detail/array.hpp b/libs/math/include/psemek/math/detail/array.hpp index ca6e2e79..91456e95 100644 --- a/libs/math/include/psemek/math/detail/array.hpp +++ b/libs/math/include/psemek/math/detail/array.hpp @@ -2,8 +2,7 @@ #include #include - -#include +#include namespace psemek::math::detail { @@ -37,7 +36,7 @@ namespace psemek::math::detail template struct array { - using type = std::vector; + using type = util::array; }; template