From 5fbcd3a8dc711c6c42efabbac72ab0408f504ea2 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 22 Jan 2021 01:39:22 +0100 Subject: Assorted c++11 cleanups. --- src/util.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/util.cc') diff --git a/src/util.cc b/src/util.cc index f775c507..2aaeddb5 100644 --- a/src/util.cc +++ b/src/util.cc @@ -56,7 +56,6 @@ #include #include #include -#include #include #include #include @@ -389,8 +388,8 @@ void dcp::indent (xmlpp::Element* element, int initial) { xmlpp::Node* last = 0; - BOOST_FOREACH (xmlpp::Node * n, element->get_children()) { - xmlpp::Element* e = dynamic_cast(n); + for (auto n: element->get_children()) { + auto e = dynamic_cast(n); if (e) { element->add_child_text_before (e, "\n" + spaces(initial + 2)); indent (e, initial + 2); -- cgit v1.2.3