From ff36771329219265dcefb1552da44fc38c5ba005 Mon Sep 17 00:00:00 2001 From: Mikhail Katliar Date: Tue, 13 Aug 2024 11:17:27 +0200 Subject: [PATCH] StorageOrder trait for blast::StaticMatrix --- include/blast/math/dense/StaticMatrix.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/blast/math/dense/StaticMatrix.hpp b/include/blast/math/dense/StaticMatrix.hpp index 83c4e18..83888d6 100644 --- a/include/blast/math/dense/StaticMatrix.hpp +++ b/include/blast/math/dense/StaticMatrix.hpp @@ -177,4 +177,8 @@ namespace blast template struct Spacing> : std::integral_constant::spacing()> {}; + + + template + struct StorageOrderHelper> : std::integral_constant {}; }