Replace auto -> const auto&/auto&&
Change-Id: Ie484e5a296b5dd222a9545d8539d40d97a6c158c
This commit is contained in:
parent
fb7f45b6a3
commit
5dce8948b6
1 changed files with 2 additions and 2 deletions
|
@ -330,7 +330,7 @@ void soinfo::set_dt_runpath(const char* path) {
|
|||
std::string origin = dirname(get_realpath());
|
||||
// FIXME: add $LIB and $PLATFORM.
|
||||
std::pair<std::string, std::string> substs[] = {{"ORIGIN", origin}};
|
||||
for (std::string& s : dt_runpath_) {
|
||||
for (auto&& s : dt_runpath_) {
|
||||
size_t pos = 0;
|
||||
while (pos < s.size()) {
|
||||
pos = s.find("$", pos);
|
||||
|
@ -1161,7 +1161,7 @@ bool ZipArchiveCache::get_or_open(const char* zip_path, ZipArchiveHandle* handle
|
|||
}
|
||||
|
||||
ZipArchiveCache::~ZipArchiveCache() {
|
||||
for (auto it : cache_) {
|
||||
for (const auto& it : cache_) {
|
||||
CloseArchive(it.second);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue