Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7a23e13e authored by Tom Cherry's avatar Tom Cherry Committed by android-build-merger
Browse files

Merge "init: add extra std::move"

am: d72d92ae

Change-Id: I928e6f60bd8ffb764ea5f25a81091242efd1f61d
parents 39e5bb61 d72d92ae
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -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();
    }
    }