Commit 33d69460 authored by Paul's avatar Paul
Browse files

Formatting

parent 08c3a87f
...@@ -29,8 +29,8 @@ struct unary : op_name<Derived> ...@@ -29,8 +29,8 @@ struct unary : op_name<Derived>
else else
{ {
shape_for_each(output.get_shape(), [&](const auto& idx) { shape_for_each(output.get_shape(), [&](const auto& idx) {
output(idx.begin(), idx.end()) = static_cast<const Derived&>(*this).apply()( output(idx.begin(), idx.end()) =
input(idx.begin(), idx.end())); static_cast<const Derived&>(*this).apply()(input(idx.begin(), idx.end()));
}); });
} }
}); });
......
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