am 5fd94dfe: Merge "Replace auto -> const auto&/auto&&"

* commit '5fd94dfe3b36ee56e54d2002ad3a5e0fa8bff683':
  Replace auto -> const auto&/auto&&
This commit is contained in:
Dimitry Ivanov
2015-10-16 13:41:45 -07:00
committed by Android Git Automerger

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