Commit d6afa9e9 authored by charlie's avatar charlie
Browse files

Formatting

parent 7b7b3aad
...@@ -40,12 +40,14 @@ struct check_shapes ...@@ -40,12 +40,14 @@ struct check_shapes
const std::string name; const std::string name;
const bool dynamic_allowed; const bool dynamic_allowed;
check_shapes(const shape* b, const shape* e, const std::string& n, const bool d = false) : begin(b), end(e), name(n),dynamic_allowed(d) check_shapes(const shape* b, const shape* e, const std::string& n, const bool d = false)
: begin(b), end(e), name(n), dynamic_allowed(d)
{ {
} }
template <class Op> template <class Op>
check_shapes(const shape* b, const shape* e, const Op& op, const bool d = false) : begin(b), end(e), name(op.name()), dynamic_allowed(d) check_shapes(const shape* b, const shape* e, const Op& op, const bool d = false)
: begin(b), end(e), name(op.name()), dynamic_allowed(d)
{ {
} }
......
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