Commit 62e8ec20 authored by Paul's avatar Paul
Browse files

Format

parent ce550441
...@@ -80,10 +80,10 @@ struct index ...@@ -80,10 +80,10 @@ struct index
} }
else else
{ {
repeat(max_stride_iterations(n, stride), [&](auto k) { repeat(max_stride_iterations(n, stride), [&](auto k) {
auto i = start + stride * k; auto i = start + stride * k;
if (i < n) if(i < n)
f(i); f(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