Commit e535f7ef authored by Paul's avatar Paul
Browse files

Format

parent 8735cdc4
...@@ -136,13 +136,13 @@ struct index ...@@ -136,13 +136,13 @@ struct index
return (n - _c<1>) / stride + _c<1>; return (n - _c<1>) / stride + _c<1>;
} }
template<class F, class I, class D> template <class F, class I, class D>
static constexpr auto invoke_loop(F f, I i, D d) -> decltype(f(i, d), void()) static constexpr auto invoke_loop(F f, I i, D d) -> decltype(f(i, d), void())
{ {
f(i, d); f(i, d);
} }
template<class F, class I, class D> template <class F, class I, class D>
static constexpr auto invoke_loop(F f, I i, D) -> decltype(f(i), void()) static constexpr auto invoke_loop(F f, I i, D) -> decltype(f(i), void())
{ {
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