Skip to content

Commit

Permalink
Remove redundant std::move call
Browse files Browse the repository at this point in the history
  • Loading branch information
petya2164 committed Feb 18, 2020
1 parent 58c58ea commit 000c5bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kodo_python/coder.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ pybind11::class_<Coder> coder(pybind11::module& m, const std::string& name)
"\t:param zone_prefix: The zone prefix to append to all "
"tracing zones.");

return std::move(coder_class);
return coder_class;
}
}

0 comments on commit 000c5bc

Please sign in to comment.