diff --git a/Trie.h b/Trie.h index f4ffdf5..d532e1e 100644 --- a/Trie.h +++ b/Trie.h @@ -25,6 +25,7 @@ namespace CppJieba unsigned int count; string tag; TrieNode() + :hmap(), isLeaf(false), count(0), tag() { isLeaf = false; count = 0;