From a8e08bf6d3606f3679175810640bf1647e9db9b4 Mon Sep 17 00:00:00 2001 From: lisyarus Date: Thu, 4 Dec 2025 17:21:57 +0300 Subject: [PATCH] Remove dynamic-sized storage from math::box --- libs/math/include/psemek/math/box.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libs/math/include/psemek/math/box.hpp b/libs/math/include/psemek/math/box.hpp index 407be6d1..24aa6924 100644 --- a/libs/math/include/psemek/math/box.hpp +++ b/libs/math/include/psemek/math/box.hpp @@ -1,6 +1,5 @@ #pragma once -#include #include #include @@ -13,7 +12,7 @@ namespace psemek::math template struct box { - typename detail::array, N>::type axes; + interval axes[N]; using point_type = point; using vector_type = vector;