Merge "init: add extra std::move"

This commit is contained in:
Treehugger Robot 2017-10-19 02:17:20 +00:00 committed by Gerrit Code Review
commit d72d92aee2

View file

@ -35,7 +35,7 @@ extern const std::string kVendorContext;
class Subcontext {
public:
Subcontext(std::string path_prefix, std::string context)
: path_prefix_(path_prefix), context_(std::move(context)) {
: path_prefix_(std::move(path_prefix)), context_(std::move(context)) {
Fork();
}