]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#4640] Reindented
authorFrancis Dupont <fdupont@isc.org>
Mon, 10 Aug 2026 12:18:02 +0000 (14:18 +0200)
committerAndrei Pavel <andrei@isc.org>
Mon, 10 Aug 2026 14:44:11 +0000 (17:44 +0300)
src/lib/cc/data.cc

index 2340e4ea37f4df4d37608aa8d2b196c38f6318eb..7483c0c4701b3b8132b0a73f5f61dad345c489cb 100644 (file)
@@ -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()) {