commit | b455f83e5ecbbcc4c839c8e2d458a307a1f5a182 | [log] [tgz] |
---|---|---|
author | Tom Cherry <tomcherry@google.com> | Thu Oct 19 02:27:32 2017 +0000 |
committer | android-build-merger <android-build-merger@google.com> | Thu Oct 19 02:27:32 2017 +0000 |
tree | b94ee5e5eb3dc008abf312245d9f09c1242cb975 | |
parent | ff9f3e39b21d0ce421db268796a62decd3cc0c22 [diff] | |
parent | 03f6740be6390cefd81440ecbfa18253932d1eea [diff] |
Merge "init: add extra std::move" am: d72d92aee2 Change-Id: I928e6f60bd8ffb764ea5f25a81091242efd1f61d
diff --git a/init/subcontext.h b/init/subcontext.h index ac77e08..e920034 100644 --- a/init/subcontext.h +++ b/init/subcontext.h
@@ -35,7 +35,7 @@ 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(); }