diff options
author | Zi Ree <81702435+zi-ree@users.noreply.github.com> | 2024-07-29 18:20:25 +0200 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-07-30 08:07:56 +0300 |
commit | 34cc2de079db3a267e0880c04b6b4c14611a5403 (patch) | |
tree | 06f1f6753b5d016d6a11e860aa274b908198ee07 /indra/llxml | |
parent | 9e4cc30b298c32b0a90fa311560c2b43c9648bb1 (diff) |
fix another misleading indentation compiler warning
Fix indentation mistake that trips gcc's misleading indentation warning.
Diffstat (limited to 'indra/llxml')
-rw-r--r-- | indra/llxml/llxmltree.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/llxml/llxmltree.cpp b/indra/llxml/llxmltree.cpp index 0ace1baf2a..164b3156e1 100644 --- a/indra/llxml/llxmltree.cpp +++ b/indra/llxml/llxmltree.cpp @@ -111,11 +111,11 @@ LLXmlTreeNode::~LLXmlTreeNode() attribute_map_t::iterator iter; for (iter=mAttributes.begin(); iter != mAttributes.end(); iter++) delete iter->second; - for(LLXmlTreeNode* node : mChildren) - { - delete node; - } - mChildren.clear(); + for(LLXmlTreeNode* node : mChildren) + { + delete node; + } + mChildren.clear(); } void LLXmlTreeNode::dump( const std::string& prefix ) |