commit | 7a23e13edb3732333bb952fd27270ab22e2c983f | [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 | 39e5bb61297a6069c5bcc260937e15547e0c2530 [diff] | |
parent | d72d92aee2d125f6a8d26932e6482bea5398b92c [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(); }