From 2a1e1743bfb0c982636a45f25ff3fc56470601bb Mon Sep 17 00:00:00 2001 From: "sgunderson@bigfoot.com" <> Date: Wed, 21 Sep 2011 23:27:45 +0200 Subject: [PATCH] Some coding style consistency fixes for C++0x. --- c++0x/xml-template.cpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/c++0x/xml-template.cpp b/c++0x/xml-template.cpp index 62b5dba..ac68650 100644 --- a/c++0x/xml-template.cpp +++ b/c++0x/xml-template.cpp @@ -31,13 +31,14 @@ void Replace::process(xmlNode *node, bool clean) { } } -Clone::Clone(const std::vector &subdirectives) +Clone::Clone(const vector &subdirectives) : subdirectives(subdirectives) {} -Clone::Clone(std::initializer_list subdirectives) +Clone::Clone(initializer_list subdirectives) : subdirectives(subdirectives) {} -void Clone::process(xmlNode *node, bool clean) { +void Clone::process(xmlNode *node, bool clean) +{ // We can't use xmlNewDocFragment, since xmlDOMWrapCloneNode only knows // how to clone elements. vector new_nodes; @@ -63,10 +64,11 @@ void Clone::process(xmlNode *node, bool clean) { Substitute::Substitute(const unordered_map &substitution_map) : substitution_map(substitution_map) {} -Substitute::Substitute(std::initializer_list> substitution_map) +Substitute::Substitute(initializer_list> substitution_map) : substitution_map(substitution_map) {} -void Substitute::process(xmlNode *node, bool clean) { +void Substitute::process(xmlNode *node, bool clean) +{ for (xmlNode *child = node->children; child != NULL; child = child->next) { bool processed = false; -- 2.39.2