aboutsummaryrefslogtreecommitdiff
path: root/dw/hyphenator.cc
diff options
context:
space:
mode:
authorcorvid <corvid@lavabit.com>2012-10-29 17:49:31 +0000
committercorvid <corvid@lavabit.com>2012-10-29 17:49:31 +0000
commit28d6a94cd196b1603c5dac35aef57c06a68a816d (patch)
tree24f03e1356ee991c6b9c37805a6fc62645650857 /dw/hyphenator.cc
parent28a186ec337eee442d7ccc6af0335ee7c1813ad1 (diff)
rm semicolons
Diffstat (limited to 'dw/hyphenator.cc')
-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)
{