diff options
Diffstat (limited to 'src/goto.h')
-rw-r--r-- | src/goto.h | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -24,13 +24,14 @@ #include <glib/gprintf.h> #include "sciteco.h" +#include "memory.h" #include "parser.h" #include "undo.h" #include "rbtree.h" namespace SciTECO { -class GotoTable : private RBTreeString { +class GotoTable : private RBTreeString, public Object { class UndoTokenSet : public UndoToken { GotoTable *table; @@ -53,12 +54,6 @@ class GotoTable : private RBTreeString { table->dump(); #endif } - - gsize - get_size(void) const - { - return sizeof(*this) + strlen(name) + 1; - } }; class Label : public RBEntryOwnString { |