Merge "Replace auto -> const auto&/auto&&"
This commit is contained in:
commit
5fd94dfe3b
@ -331,7 +331,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);
|
||||
@ -1169,7 +1169,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…
x
Reference in New Issue
Block a user