diff --git a/src/util/trie.h b/src/util/trie.h index c0d2d1519..f1b690ceb 100644 --- a/src/util/trie.h +++ b/src/util/trie.h @@ -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(); }); }