aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/rbtree.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/rbtree.cpp')
-rw-r--r--src/rbtree.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/rbtree.cpp b/src/rbtree.cpp
index e64de96..f1d870d 100644
--- a/src/rbtree.cpp
+++ b/src/rbtree.cpp
@@ -19,12 +19,14 @@
#include "config.h"
#endif
-#include <bsd/sys/tree.h>
+#include <glib.h>
+#include <glib/gprintf.h>
#include "rbtree.h"
namespace SciTECO {
-RB_GENERATE(RBTree::Tree, RBTree::RBEntry, nodes, RBTree::compare_entries);
+template class RBTreeStringT<strcmp, strncmp>;
+template class RBTreeStringT<g_ascii_strcasecmp, g_ascii_strncasecmp>;
} /* namespace SciTECO */