From 7f023701dd843749cf878baabeb3d33917fda62f Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Sat, 30 Apr 2022 09:43:07 -0400 Subject: Formatting: remove space in range-style for loops Change .clang-format and commit automated changes from a fresh run of format-code --- libqpdf/QPDF_Dictionary.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libqpdf/QPDF_Dictionary.cc') diff --git a/libqpdf/QPDF_Dictionary.cc b/libqpdf/QPDF_Dictionary.cc index c3343b21..e5b88027 100644 --- a/libqpdf/QPDF_Dictionary.cc +++ b/libqpdf/QPDF_Dictionary.cc @@ -24,7 +24,7 @@ std::string QPDF_Dictionary::unparse() { std::string result = "<< "; - for (auto& iter : this->items) { + for (auto& iter: this->items) { if (!iter.second.isNull()) { result += QPDF_Name::normalizeName(iter.first) + " " + iter.second.unparse() + " "; @@ -38,7 +38,7 @@ JSON QPDF_Dictionary::getJSON() { JSON j = JSON::makeDictionary(); - for (auto& iter : this->items) { + for (auto& iter: this->items) { if (!iter.second.isNull()) { j.addDictionaryMember( QPDF_Name::normalizeName(iter.first), iter.second.getJSON()); @@ -96,7 +96,7 @@ std::set QPDF_Dictionary::getKeys() { std::set result; - for (auto& iter : this->items) { + for (auto& iter: this->items) { if (!iter.second.isNull()) { result.insert(iter.first); } -- cgit v1.2.3-54-g00ecf