fix(util/trie): fix the build

This commit is contained in:
Leonardo de Moura 2017-05-23 13:23:19 -07:00 committed by Floris van Doorn
parent 123ef6ab67
commit 3e429f0368

View file

@ -79,7 +79,7 @@ class trie : public KeyCMP {
} }
n->m_children.for_each([&](Key const & k, trie const & c) { n->m_children.for_each([&](Key const & k, trie const & c) {
prefix.push_back(k); prefix.push_back(k);
for_each(f, c, prefix); trie::for_each(f, c, prefix);
prefix.pop_back(); prefix.pop_back();
}); });
} }