diff --git a/coding/trie.hpp b/coding/trie.hpp index d9a813e9cd..80ad5ce8d1 100644 --- a/coding/trie.hpp +++ b/coding/trie.hpp @@ -20,7 +20,8 @@ class Iterator public: struct Edge { - buffer_vector m_str; + typedef buffer_vector EdgeStrT; + EdgeStrT m_str; EdgeValueT m_value; };