Commit 57a5c827 authored by Paul's avatar Paul
Browse files

Format

parent 0f6c37e5
...@@ -96,7 +96,7 @@ constexpr auto array_for_each(T& x, Ts&... xs) ...@@ -96,7 +96,7 @@ constexpr auto array_for_each(T& x, Ts&... xs)
(is_vectorizable<typename Ts::value_type>() or ...)) and (is_vectorizable<typename Ts::value_type>() or ...)) and
size <= 8 and size > 1 and (size % 2 == 0)) size <= 8 and size > 1 and (size % 2 == 0))
{ {
if (__builtin_is_constant_evaluated()) if(__builtin_is_constant_evaluated())
{ {
for(index_int i = 0; i < size; i++) for(index_int i = 0; i < size; i++)
f(x[i], xs[i]...); f(x[i], xs[i]...);
......
Markdown is supported
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