Bazaar: Fix Tree to compile on clang (thanks wimpie).

git-svn-id: svn://ultimatepp.org/upp/trunk@15198 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
klugier 2020-10-04 19:40:40 +00:00
parent 4106a391af
commit 811bc52b27

View file

@ -3,7 +3,7 @@
#include <Core/Core.h>
NAMESPACE_UPP
namespace Upp {
template <class T>
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<K, BB>& a)
xml("leaf", (BB&)a); Xmlize(xml, (TreeMap<K, MapNodeB<K,BB> >&)a);
}
END_UPP_NAMESPACE
}
#endif