Usermode/AxWin4 - Fix broken map impl causing pixel->window mapping to fail
[tpg/acess2.git] / Usermode / Libraries / libc++.so_src / include_exp / map
index 455af71..2f9031b 100644 (file)
@@ -198,7 +198,7 @@ public:
                const key_type& k = val.first;
                iterator it = upper_bound(k);
                if( it == end() || m_comp(k, it->first) ) {     // if k < it->first, no match
-                       insert_at(it.m_index, value_type(k,mapped_type()) );
+                       insert_at(it.m_index, val);
                        return pair<iterator,bool>(it, true);
                }
                else {

UCC git Repository :: git.ucc.asn.au