Merge "init: add extra std::move"

am: d72d92aee2

Change-Id: I928e6f60bd8ffb764ea5f25a81091242efd1f61d
This commit is contained in:
Tom Cherry 2017-10-19 02:27:32 +00:00 committed by android-build-merger
commit 7a23e13edb

View file

@ -35,7 +35,7 @@ extern const std::string kVendorContext;
class Subcontext { class Subcontext {
public: public:
Subcontext(std::string path_prefix, std::string context) 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(); Fork();
} }