From 2dcbc3bd263907a424b68bb3393dfadd8a29f239 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Tue, 10 Sep 2024 20:47:35 +0200 Subject: Fixing compile errors from last change --- modules/remote/tests/remote_loopback.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/remote') diff --git a/modules/remote/tests/remote_loopback.cpp b/modules/remote/tests/remote_loopback.cpp index bc04605..61ff0bc 100644 --- a/modules/remote/tests/remote_loopback.cpp +++ b/modules/remote/tests/remote_loopback.cpp @@ -36,7 +36,7 @@ SAW_TEST("Remote Loopback Data"){ auto& client = eo_client.get_value(); data foo{4}; - for(uint64_t i = 0; i < foo.size(); ++i){ + for(uint64_t i = 0; i < foo.size().get(); ++i){ foo.at(i).set(i * 2.0); } id sent_id = [&](){ @@ -85,7 +85,7 @@ SAW_TEST("Remote Loopback Data"){ auto conv = client.receive(alloc_id); auto eov = conv.take(); SAW_EXPECT(eov.is_value(), "Failed receive."); - SAW_EXPECT(eov.get_value().size() == 4u, "Wrong received value."); + SAW_EXPECT(eov.get_value().size().get() == 4u, "Wrong received value."); } } -- cgit v1.2.3