mirror of
https://github.com/geode-sdk/geode.git
synced 2025-03-23 03:15:58 -04:00
Merge branch '1.2.0-dev' of github.com:geode-sdk/geode into 1.2.0-dev
This commit is contained in:
commit
d22950d8c6
1 changed files with 5 additions and 1 deletions
|
@ -103,6 +103,10 @@ namespace gd {
|
||||||
++m_nodecount;
|
++m_nodecount;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void insert(std::pair<K, V> const& val) {
|
||||||
|
insert_pair(val);
|
||||||
|
}
|
||||||
|
|
||||||
void insert_pair(std::pair<K, V> const& val) {
|
void insert_pair(std::pair<K, V> const& val) {
|
||||||
_tree_node x = static_cast<_tree_node>(m_header.m_parent);
|
_tree_node x = static_cast<_tree_node>(m_header.m_parent);
|
||||||
_tree_node y = static_cast<_tree_node>(&m_header);
|
_tree_node y = static_cast<_tree_node>(&m_header);
|
||||||
|
@ -188,7 +192,7 @@ namespace gd {
|
||||||
V& operator[](K const& __k) {
|
V& operator[](K const& __k) {
|
||||||
iterator __i = lower_bound(__k);
|
iterator __i = lower_bound(__k);
|
||||||
if (__i == end() || compare(__k, (*__i).first)) {
|
if (__i == end() || compare(__k, (*__i).first)) {
|
||||||
__i = insert(__i, std::pair<K, V>(__k, V()));
|
__i = insert_pair(std::pair<K, V>(__k, V()));
|
||||||
}
|
}
|
||||||
return (*__i).second;
|
return (*__i).second;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue