Commit 3d02e1dc authored by Paul's avatar Paul
Browse files

Formatting

parent 4285d37d
......@@ -685,7 +685,7 @@ struct onnx_parser
}
for(auto&& p : nodes)
{
for (auto&& output : p.second.output())
for(auto&& output : p.second.output())
this->parse_node(output);
}
}
......@@ -725,9 +725,7 @@ struct onnx_parser
result.end(),
node.output().begin(),
std::inserter(instructions, instructions.end()),
[](auto&& x, auto&& y) {
return std::make_pair(y, x);
});
[](auto&& x, auto&& y) { return std::make_pair(y, x); });
}
}
......
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