From 507d5bc446dc0921e6b77a96f33c9f9d895c7182 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Sun, 10 Sep 2023 14:17:59 +0200 Subject: [PATCH] fix(unit test): `vector` now properly propagates `treat_as_floating_point` --- test/unit_test/runtime/linear_algebra_test.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/unit_test/runtime/linear_algebra_test.cpp b/test/unit_test/runtime/linear_algebra_test.cpp index 35ef3464..818031f4 100644 --- a/test/unit_test/runtime/linear_algebra_test.cpp +++ b/test/unit_test/runtime/linear_algebra_test.cpp @@ -34,6 +34,9 @@ template using vector = STD_LA::fixed_size_column_vector; +template +inline constexpr bool mp_units::treat_as_floating_point> = mp_units::treat_as_floating_point; + template inline constexpr bool mp_units::is_vector> = true;