From 71601c5c8a7ec6e4fd9ce8db99bf780e9c2ac943 Mon Sep 17 00:00:00 2001 From: Francis Dupont Date: Mon, 10 Aug 2026 14:18:02 +0200 Subject: [PATCH] [#4640] Reindented --- src/lib/cc/data.cc | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) 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()) { -- 2.47.3