Merge "Remove std::move() around const variable"
This commit is contained in:
commit
833adaf250
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ void ParseMountFlags(const std::string& flags, FstabEntry* entry) {
|
|||
entry->reserved_size = size_in_4k_blocks << 12;
|
||||
}
|
||||
} else if (StartsWith(flag, "lowerdir=")) {
|
||||
entry->lowerdir = std::move(arg);
|
||||
entry->lowerdir = arg;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue