Skip to content

Commit

Permalink
fix(util/trie): compilation issue
Browse files Browse the repository at this point in the history
See #1619
  • Loading branch information
leodemoura authored and Floris van Doorn committed Jun 16, 2017
1 parent 3e429f0 commit d38979f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/trie.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class trie : public KeyCMP {
} else {
trie n1(*c1);
new_t1->m_children.erase(k);
new_t1->m_children.insert(k, merge(n1.steal(), c2));
new_t1->m_children.insert(k, trie::merge(n1.steal(), c2));
}
});
return new_t1;
Expand Down

0 comments on commit d38979f

Please sign in to comment.