From 811bc52b27392082397d64a89903d4f9ce9bd226 Mon Sep 17 00:00:00 2001 From: klugier Date: Sun, 4 Oct 2020 19:40:40 +0000 Subject: [PATCH] Bazaar: Fix Tree to compile on clang (thanks wimpie). git-svn-id: svn://ultimatepp.org/upp/trunk@15198 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- bazaar/Tree/Tree.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/bazaar/Tree/Tree.h b/bazaar/Tree/Tree.h index b6180e986..8e9c5a917 100644 --- a/bazaar/Tree/Tree.h +++ b/bazaar/Tree/Tree.h @@ -3,7 +3,7 @@ #include -NAMESPACE_UPP +namespace Upp { template class Tree @@ -109,9 +109,6 @@ public: , B(v, 0) { Relink(); } - using B::ConstIterator; - using B::Iterator; - // using B::ValueType; // using B::Begin; // using B::End; @@ -453,6 +450,6 @@ inline void Xmlize(XmlIO& xml, MapNodeB& a) xml("leaf", (BB&)a); Xmlize(xml, (TreeMap >&)a); } -END_UPP_NAMESPACE +} #endif