Replace many of the iterators types with auto
This commit is contained in:
@@ -88,7 +88,7 @@ try {
|
||||
Exiv2::ExifData& ed = image->exifData();
|
||||
|
||||
for (unsigned int i = 0; i < EXV_COUNTOF(easyAccess); ++i) {
|
||||
Exiv2::ExifData::const_iterator pos = easyAccess[i].findFct_(ed);
|
||||
auto pos = easyAccess[i].findFct_(ed);
|
||||
std::cout << std::setw(21) << std::left << easyAccess[i].label_;
|
||||
if (pos != ed.end()) {
|
||||
std::cout << " (" << std::setw(35) << pos->key() << ") : "
|
||||
|
||||
Reference in New Issue
Block a user