Removed unecessary template parameters which broke builds on.. um.. the exact same

compiler I use which worked fine (?).


git-svn-id: http://svn.drobilla.net/lad@171 a436a847-0d15-0410-975c-d299462d15a1
This commit is contained in:
dave 2006-10-14 19:35:03 +00:00
parent 272c4e6bd2
commit e6317eb3fb
1 changed files with 2 additions and 2 deletions

View File

@ -95,8 +95,8 @@ template <typename T>
class Tree
{
public:
Tree<T>() : m_root(0), m_size(0) {}
~Tree<T>();
Tree() : m_root(0), m_size(0) {}
~Tree();
void insert(TreeNode<T>* const n);
TreeNode<T>* remove(const string& key);