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/codec-netcdf/tests/codec-netcdf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/codec-netcdf') diff --git a/modules/codec-netcdf/tests/codec-netcdf.cpp b/modules/codec-netcdf/tests/codec-netcdf.cpp index 7e624df..540f60e 100644 --- a/modules/codec-netcdf/tests/codec-netcdf.cpp +++ b/modules/codec-netcdf/tests/codec-netcdf.cpp @@ -97,7 +97,7 @@ SAW_TEST("NetCDF Struct Array read"){ for(std::size_t i = 0; i < 5; ++i){ for(std::size_t j = 0; j < 3; ++j){ int64_t exp_val = i * 3 + j; - SAW_EXPECT(arr.at(i,j).get() == exp_val, "Incorrect value"); + SAW_EXPECT(arr.at({i,j}).get() == exp_val, "Incorrect value"); } } } -- cgit v1.2.3