summaryrefslogtreecommitdiff
path: root/include/map
AgeCommit message (Expand)Author
2017-11-15First part of P0600 - '[[nodiscard] in the standard library'. Mark the 'empty...Marshall Clow
2017-04-18Cleanup _LIBCPP_HAS_NO_<c++11-feature> macros in std::map and std::multimapEric Fiselier
2017-04-13Fix most failures caused by r300140Eric Fiselier
2017-01-13Add _LIBCPP_DIAGNOSE_WARNING and _LIBCPP_DIAGNOSE_ERROR macros.Eric Fiselier
2017-01-05[libcxx] Fix PR31402: map::__find_equal_key has undefined behavior.Eric Fiselier
2017-01-04[NFC] Rename _LIBCPP_TYPE_VIS_ONLY to _LIBCPP_TEMPLATE_VISEric Fiselier
2016-08-17Support allocators with explicit conversion constructors. Fixes bug #29000Marshall Clow
2016-07-18Change a couple ifdefs from '#if __cplusplus >= 2011xxx' to '#ifndef _LIBCPP_...Marshall Clow
2016-04-21Add is_swappable/is_nothrow_swappable traitsEric Fiselier
2016-04-18Fix LWG issue 2345 - Add insert(value_type&&)Eric Fiselier
2016-03-31Fix LWG issue 2469 - Use piecewise construction in map::operator[].Eric Fiselier
2016-03-31Teach __tree how to handle map's __value_typeEric Fiselier
2016-02-20Remove all usages of "const" node pointer typedefs in the assoc containers.Eric Fiselier
2016-02-20Cleanup node-type handling in the associative containers.Eric Fiselier
2016-01-05First half of LWG#2354: 'Unnecessary copying when inserting into maps with br...Marshall Clow
2015-12-30Use __rebind_pointer to avoid #ifdef blockEric Fiselier
2015-11-26Add static_assert to set/multiset/map/multimap/forward_list/deque that the al...Marshall Clow
2015-08-19Fix warnings about pessimizing return moves for C++11 and higherDimitry Andric
2015-07-13Implement the first part of N4258: 'Cleaning up noexcept in the Library'. Thi...Marshall Clow
2015-07-07Implement N4279 and LWG#2664 for <map>. Reviewed as http://reviews.llvm.org/D...Marshall Clow
2015-06-30Add tests for LWG#2299. While doing so, I noticed that the tests we have for ...Marshall Clow
2015-06-13[libcxx] Fix detection of __is_final.Eric Fiselier
2015-05-10Fix for LWG Issue 2059: C++0x ambiguity problem with map::eraseMarshall Clow
2015-04-07In many places, there was an #ifdef/#else block that selected one of two impl...Marshall Clow
2015-03-03Allow declaration of map and multimap iterator with incomplete mapped type. P...Eric Fiselier
2014-08-24Fix bug 20740 - std::set/std::map don't support heterogeneous lookup for coun...Marshall Clow
2014-04-16Remove some unnecessary noexcept conditions. Thanks to Richard Smith for the ...Marshall Clow
2014-03-10Fix bug I introduced (enabling implicit conversions from compare function to ...Marshall Clow
2014-03-05Implement LWG 2193. Default constructors for standard library containers are ...Marshall Clow
2014-02-08Fix for PR18735 - self-assignment for map/multimap gives incorrect results in...Marshall Clow
2013-09-30SCARY/N2913 iterator support between the multi and non-multi versions of the ...Howard Hinnant
2013-09-12A collection of minor type-o fixes. The first two aren't testable, but all t...Howard Hinnant
2013-09-11LWG Issue #2210 Part 5 - map/multimap; no, really - the last one was set/mult...Marshall Clow
2013-08-22Zhihao Yuan noted that there were a few unneeded statements. Eliminated the...Howard Hinnant
2013-08-13Second half (map/multimap) of N3657Marshall Clow
2013-08-12Nico Rieck: this patch series fixes visibility issues on Windows as explaine...Howard Hinnant
2013-07-05Remove implicit conversion from __value_type to value_type in [unordered_][mu...Howard Hinnant
2013-07-04Removed extension in [unordered_][multi]map which allowed one to emplace usin...Howard Hinnant
2013-07-04Simplify comparators of [unordered_][multi]map. This fixes http://llvm.org/b...Howard Hinnant
2013-06-19Implement full support for non-pointer types in custom allocators. This is f...Howard Hinnant
2013-03-06No functionality change at this time. I've split _LIBCPP_VISIBLE up into two...Howard Hinnant
2012-05-25The rules for emplace in map, multimap, unordered_map and unordered_multimap ...Howard Hinnant
2011-12-11Fix http://llvm.org/bugs/show_bug.cgi?id=11461. Credit Alberto Ganesh Barbati.Howard Hinnant
2011-11-29Further macro protection by replacing _[A-Z] with _[A-Z]pHoward Hinnant
2011-10-17Windows support by Ruben Van Boxem.Howard Hinnant
2011-08-12Fixed PR10574: http://llvm.org/bugs/show_bug.cgi?id=10574Howard Hinnant
2011-07-01Correct for new rules regarding implicitly deleted special members. http://ll...Howard Hinnant
2011-06-30_STD -> _VSTD to avoid macro clash on windowsHoward Hinnant
2011-06-19More fixes: One of my fixes to type_traits earlier today was incorrect, so t...Howard Hinnant
2011-06-14Provide names for template and function parameters in forward declarations. ...Howard Hinnant