Skip to content
Snippets Groups Projects
Commit 206752a2 authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Fix list to tuple conversion in case of R^1

parent 58359a2c
No related branches found
No related tags found
1 merge request!71Feature/language tiny matrices
......@@ -675,7 +675,7 @@ class AffectationToTupleFromListProcessor final : public INodeProcessor
},
child_value[j]);
}
} else if constexpr (std::is_same_v<T, int64_t>) {
} else if constexpr (std::is_arithmetic_v<T>) {
if constexpr (std::is_same_v<ValueT, TinyVector<1>>) {
tuple_value[i][0] = child_value;
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment