"test/git@developer.sourcefind.cn:gaoqiong/migraphx.git" did not exist on "601122f83c9e8eb8390f7dc070e3c144a84cbff6"
Commit bd60be01 authored by Paul's avatar Paul
Browse files

Remove unused parameter

parent c630e3b0
...@@ -155,7 +155,7 @@ struct onnx_parser ...@@ -155,7 +155,7 @@ struct onnx_parser
template <class T> template <class T>
void add_generic_op(std::string name, T x) void add_generic_op(std::string name, T x)
{ {
ops.emplace(name, [this, x](attribute_map attributes, std::vector<instruction_ref> args) { ops.emplace(name, [this, x](attribute_map, std::vector<instruction_ref> args) {
return prog.add_instruction(x, args); return prog.add_instruction(x, args);
}); });
} }
......
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