From dfc9dcbb6b592d5639f5e9232bd022b85090a5b1 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Mon, 4 May 2026 17:57:20 +0200 Subject: Testing forwarding simplifications --- modules/codec-unit/tests/codec-unit.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/codec-unit/tests') diff --git a/modules/codec-unit/tests/codec-unit.cpp b/modules/codec-unit/tests/codec-unit.cpp index 1321316..88277c6 100644 --- a/modules/codec-unit/tests/codec-unit.cpp +++ b/modules/codec-unit/tests/codec-unit.cpp @@ -25,7 +25,7 @@ using FantasySquareMeter = Unit< SAW_TEST("Codec Unit/Addition"){ using namespace saw; - data a{{5}}, b{{4}}; + data a{5}, b{{4}}; auto c = a + b; @@ -45,7 +45,7 @@ SAW_TEST("Codec Unit/Subtraction"){ SAW_TEST("Codec Unit/Multiplication"){ using namespace saw; - data a{{5}}, b{{4}}; + data a{5}, b{4}; auto c = a * b; -- cgit v1.2.3