diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-09-09 10:57:25 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-09-09 10:57:25 +0200 |
commit | 3fa7dcb5684504dc99d14d2dc003876151636834 (patch) | |
tree | 8f2dee12c94c47bd218a4ce0e4770fe576fd7c08 /tests | |
parent | 1f993006305952f4cafddd08267731877e808bba (diff) |
Removing warnings
Diffstat (limited to 'tests')
-rw-r--r-- | tests/vtk_write.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vtk_write.cpp b/tests/vtk_write.cpp index b2e30f0..0df9998 100644 --- a/tests/vtk_write.cpp +++ b/tests/vtk_write.cpp @@ -48,7 +48,7 @@ SAW_TEST("VTK Write test example"){ auto& cell_0 = cells.at({{{0,0}}}); cell_0.template get<"velocity">()= {{0.5,-0.1}}; - cell_0.template get<"pressure">().set({1.1}); + cell_0.template get<"pressure">().set(1.1); auto eov = lbm::impl::lbm_vtk_writer<sch::Array<sch::MacroStruct<sch::T,2>, 2>>::apply(sstream, cells); SAW_EXPECT(eov.is_value(), "vtk writer failed to write"); |