X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FLibraries%2Flibc%2B%2B.so_src%2Finclude_exp%2Fmap;h=2f9031b93fac5d540692b0019c5f77119143433b;hb=b5f8fa2dea9d6a67ac5c8a3a442ee4570deaa56c;hp=455af71f5be71001904d4b9ff15a46f5f3bd1ef3;hpb=8b16265b4394af76f64c30393e27d08c294c4bac;p=tpg%2Facess2.git diff --git a/Usermode/Libraries/libc++.so_src/include_exp/map b/Usermode/Libraries/libc++.so_src/include_exp/map index 455af71f..2f9031b9 100644 --- a/Usermode/Libraries/libc++.so_src/include_exp/map +++ b/Usermode/Libraries/libc++.so_src/include_exp/map @@ -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(it, true); } else {