summaryrefslogtreecommitdiffstats
path: root/src/libs
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-10-14 19:35:03 +0000
committerDavid Robillard <d@drobilla.net>2006-10-14 19:35:03 +0000
commit3bb20af7d115cabc13cb7d7a9a58fdad465d76a6 (patch)
treefa4568561bee2e0adaa5fc386b998e82ddcfcdf1 /src/libs
parent69b12f9741702e58df6278874e663ef474cc1473 (diff)
downloadingen-3bb20af7d115cabc13cb7d7a9a58fdad465d76a6.tar.gz
ingen-3bb20af7d115cabc13cb7d7a9a58fdad465d76a6.tar.bz2
ingen-3bb20af7d115cabc13cb7d7a9a58fdad465d76a6.zip
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/ingen@171 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs')
-rw-r--r--src/libs/engine/Tree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/engine/Tree.h b/src/libs/engine/Tree.h
index 502d8e16..bcc39934 100644
--- a/src/libs/engine/Tree.h
+++ b/src/libs/engine/Tree.h
@@ -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);