Skip to content
Snippets Groups Projects
Commit 917c3c91 authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

Remapgrid: replace ranges::fill by for loop (bug with pgc++ 23.9.0)

parent 5a1d5433
No related branches found
No related tags found
1 merge request!225M214003/develop
......@@ -585,7 +585,8 @@ public:
ranges::fill(remap.srcGrid.cell_frac, 0.0);
ranges::fill(remap.tgtGrid.cell_area, 0.0);
}
ranges::fill(remap.tgtGrid.cell_frac, 0.0);
// ranges::fill(remap.tgtGrid.cell_frac, 0.0); failed with pgc++ 23.9.0
for (auto &cf : remap.tgtGrid.cell_frac) cf = 0.0;
// initialize some remapping variables
remap_vars_init(mapType, remapOrder, remap.vars);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment