modify struct trienode

This commit is contained in:
wyy 2013-06-30 22:33:07 +08:00
parent 78db3498d1
commit 34c99994cb

2
Trie.h
View File

@ -27,8 +27,6 @@ namespace CppJieba
TrieNode() TrieNode()
:hmap(), isLeaf(false), count(0), tag() :hmap(), isLeaf(false), count(0), tag()
{ {
isLeaf = false;
count = 0;
} }
}; };