[search] Add typedef EdgeStrT to TrieIterator::Edge.

This commit is contained in:
Yury Melnichek 2011-11-21 00:07:30 +01:00 committed by Alex Zolotarev
parent fe9e7d13a1
commit c43c5ef038

View file

@ -20,7 +20,8 @@ class Iterator
public:
struct Edge
{
buffer_vector<TrieChar, 8> m_str;
typedef buffer_vector<TrieChar, 8> EdgeStrT;
EdgeStrT m_str;
EdgeValueT m_value;
};