fix(util/trie): fix the build

This commit is contained in:
Leonardo de Moura 2017-05-23 13:23:19 -07:00
parent ce44566c7d
commit 9afb09cc1e

View file

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