Merge "init: add extra std::move" am: d72d92aee2
am: 7a23e13edb
am: fecca8eef1
Change-Id: Ifa816d0bb2b6e5e784aed66972f30316560ace55
This commit is contained in:
commit
24a7f14a39
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue