Merge "Replace auto -> const auto&/auto&&"

This commit is contained in:
Dimitry Ivanov 2015-10-16 20:37:34 +00:00 committed by Gerrit Code Review
commit 5fd94dfe3b

View File

@ -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);
}
}