diff options
author | corvid <corvid@lavabit.com> | 2012-10-29 17:49:31 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2012-10-29 17:49:31 +0000 |
commit | 28d6a94cd196b1603c5dac35aef57c06a68a816d (patch) | |
tree | 24f03e1356ee991c6b9c37805a6fc62645650857 /dw/hyphenator.cc | |
parent | 28a186ec337eee442d7ccc6af0335ee7c1813ad1 (diff) |
rm semicolons
Diffstat (limited to 'dw/hyphenator.cc')
-rw-r--r-- | dw/hyphenator.cc | 4 |
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) { |