aboutsummaryrefslogtreecommitdiff
path: root/dw
diff options
context:
space:
mode:
Diffstat (limited to 'dw')
-rw-r--r--dw/hyphenator.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/dw/hyphenator.cc b/dw/hyphenator.cc
index 62a47a73..61cbef0d 100644
--- a/dw/hyphenator.cc
+++ b/dw/hyphenator.cc
@@ -490,14 +490,14 @@ Trie::Trie (TrieNode *array, int size, bool freeArray, ZoneAllocator *dataZone)
this->size = size;
this->freeArray = freeArray;
this->dataZone = dataZone;
-};
+}
Trie::~Trie ()
{
delete dataZone;
if (freeArray)
free(array);
-};
+}
void Trie::save (FILE *file)
{