"...git@developer.sourcefind.cn:modelzoo/solov2-pytorch.git" did not exist on "d6b3cbd5b7bc7229ab90ede0ca07b0bd2e147bbd"
Commit 40cf2b06 authored by Paul's avatar Paul
Browse files

Fix clang tidy

parent 1b33704e
...@@ -299,7 +299,7 @@ struct cpu_concat ...@@ -299,7 +299,7 @@ struct cpu_concat
shape compute_shape(const std::vector<shape>& inputs) const { return op.compute_shape(inputs); } shape compute_shape(const std::vector<shape>& inputs) const { return op.compute_shape(inputs); }
argument compute(context&, const shape& output_shape, std::vector<argument> args) const argument compute(context&, const shape& output_shape, std::vector<argument> args) const
{ {
return op.compute(output_shape, args); return op.compute(output_shape, std::move(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