|
|
@@ -63,7 +63,7 @@ void trie<K, V, C>::insert_impl(impl_iterator & out, bool & create,
|
|
|
auto it = impl_.lower_bound(key);
|
|
|
if (it == impl_.end() || key_compare()(key, it->first)) {
|
|
|
create = true;
|
|
|
- it = impl_.emplace_hint(it, key, make_value<trie>());
|
|
|
+ it = impl_.emplace_hint(it, key, pointers::make_value<trie>());
|
|
|
}
|
|
|
out.push({it, impl_.end()});
|
|
|
}
|