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

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

Merge "init: add extra std::move" am: d72d92ae

am: 7a23e13e

Change-Id: Ibae71b9ba5dbb5e5cfccd770bd16d16bfe215ab0
parents dc24a5dc 7a23e13e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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();
    }