Commit a8c62cd2 authored by Thibault Hallouin's avatar Thibault Hallouin
Browse files

fix failing initialisation of array with empty braces

1 merge request!6release v0.1.1
Pipeline #47793 passed with stage
in 3 minutes and 56 seconds
Showing with 2 additions and 2 deletions
+2 -2
...@@ -372,7 +372,7 @@ namespace evalhyd ...@@ -372,7 +372,7 @@ namespace evalhyd
} }
else else
{ {
return XB3({}); return XB3(xt::zeros<bool>({0, 0, 0}));
} }
}; };
const XB3 c_msk = gen_msk(); const XB3 c_msk = gen_msk();
......
...@@ -379,7 +379,7 @@ namespace evalhyd ...@@ -379,7 +379,7 @@ namespace evalhyd
} }
else else
{ {
return XB4({}); return XB4(xt::zeros<bool>({0, 0, 0, 0}));
} }
}; };
const XB4 c_msk = gen_msk(); const XB4 c_msk = gen_msk();
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment