From 4929dbced501d4252e890872abf8e29b7dcfa0e7 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Tue, 24 Mar 2026 15:36:49 +0100 Subject: Fixed iterator and compilation issues --- modules/codec/tests/math.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'modules/codec/tests/math.cpp') diff --git a/modules/codec/tests/math.cpp b/modules/codec/tests/math.cpp index 5f4de92..34dcce8 100644 --- a/modules/codec/tests/math.cpp +++ b/modules/codec/tests/math.cpp @@ -31,7 +31,8 @@ SAW_TEST("Math/Tensor Construction"){ SAW_TEST("Math/Tensor Fill"){ using namespace saw; - auto tensor = math::fill({2.5}); + data> tensor; + math::fill(tensor,{2.5}); bool cf{true}; for(uint64_t i = 0u; i < 2u; ++i){ -- cgit v1.2.3