From: Francis Dupont Date: Mon, 10 Aug 2026 12:18:02 +0000 (+0200) Subject: [#4640] Reindented X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=71601c5c8a7ec6e4fd9ce8db99bf780e9c2ac943;p=thirdparty%2Fkea.git [#4640] Reindented --- diff --git a/src/lib/cc/data.cc b/src/lib/cc/data.cc index 2340e4ea37..7483c0c470 100644 --- a/src/lib/cc/data.cc +++ b/src/lib/cc/data.cc @@ -1317,7 +1317,8 @@ mergeDiffAdd(ElementPtr& element, ElementPtr& other, // hierarchy. if (hierarchy.size() <= idx) { isc_throw(OutOfRange, "Attempt at accessing index " - << idx << " in hierarchy of size " << hierarchy.size()); + << idx << " in hierarchy of size " + << hierarchy.size()); } auto f = hierarchy[idx].find(key); if (f != hierarchy[idx].end()) { @@ -1388,9 +1389,9 @@ mergeDiffDel(ElementPtr& element, ElementPtr& other, // Check if we have any description of the key in the // configuration hierarchy. if (hierarchy.size() <= idx) { - isc_throw(OutOfRange, "Attempt at accessing index " << idx - << " in hierarchy of size " - << hierarchy.size()); + isc_throw(OutOfRange, "Attempt at accessing index " + << idx << " in hierarchy of size " + << hierarchy.size()); } auto f = hierarchy[idx].find(key); if (f != hierarchy[idx].end()) { @@ -1447,8 +1448,8 @@ mergeDiffDel(ElementPtr& element, ElementPtr& other, // configuration hierarchy. if (hierarchy.size() <= idx) { isc_throw(OutOfRange, "Attempt at accessing index " - << idx << " in hierarchy of size " - << hierarchy.size()); + << idx << " in hierarchy of size " + << hierarchy.size()); } auto f = hierarchy[idx].find(key); if (f != hierarchy[idx].end()) { @@ -1494,7 +1495,8 @@ extend(const std::string& container, const std::string& extension, // hierarchy. if (hierarchy.size() <= idx) { isc_throw(OutOfRange, "Attempt at accessing index " - << idx << " in hierarchy of size " << hierarchy.size()); + << idx << " in hierarchy of size " + << hierarchy.size()); } auto f = hierarchy[idx].find(key); if (f != hierarchy[idx].end()) {