Merge "Remove std::move() around const variable"

This commit is contained in:
Yi-Yo Chiang 2021-11-16 05:13:59 +00:00 committed by Gerrit Code Review
commit 833adaf250
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ void ParseMountFlags(const std::string& flags, FstabEntry* entry) {
entry->reserved_size = size_in_4k_blocks << 12; entry->reserved_size = size_in_4k_blocks << 12;
} }
} else if (StartsWith(flag, "lowerdir=")) { } else if (StartsWith(flag, "lowerdir=")) {
entry->lowerdir = std::move(arg); entry->lowerdir = arg;
} }
} }
} }