From 2f781525d7b9ac36794d43fbba3f0a0da4fd4e0d Mon Sep 17 00:00:00 2001 From: lisyarus Date: Tue, 3 Feb 2026 23:45:00 +0300 Subject: [PATCH] Implement math::concat for arbitrary types, not just vectors --- libs/math/include/psemek/math/concat.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libs/math/include/psemek/math/concat.hpp b/libs/math/include/psemek/math/concat.hpp index 9da409fc..db871c53 100644 --- a/libs/math/include/psemek/math/concat.hpp +++ b/libs/math/include/psemek/math/concat.hpp @@ -1,18 +1,18 @@ #pragma once -#include +#include namespace psemek::math { - template - auto concat(vector const & ... vs) + template