fix(util/trie): fix the build
This commit is contained in:
parent
123ef6ab67
commit
3e429f0368
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue