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

Formatting

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