summaryrefslogtreecommitdiff
path: root/include/unordered_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> in std::unordered_map and std::unorder...Eric Fiselier
2017-04-13Fix more bad member swap definitions in unordered_map.Eric Fiselier
2017-01-13Diagnose non-const-callable hash functions and comparatorsEric Fiselier
2017-01-04[NFC] Rename _LIBCPP_TYPE_VIS_ONLY to _LIBCPP_TEMPLATE_VISEric Fiselier
2016-12-28Add tests for unordered container tests and std::stringEric Fiselier
2016-12-23Fix unused parameters and variablesEric Fiselier
2016-09-26[libc++] Fix typos causing compilation errors when _LIBCPP_DEBUG_LEVEL >= 2Oleg Ranevskyy
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-22Cleanup: move visibility/linkage attributes to the first declaration.Evgeniy Stepanov
2016-04-18Mark LWG issue 2469 as done. Also simplify try_emplace and insert_or_assign i...Eric Fiselier
2016-04-18Fix LWG issue 2345 - Add insert(value_type&&)Eric Fiselier
2016-02-11Fix LWG issue 2469 - Use piecewise construction in unordered_map::operator[].Eric Fiselier
2016-02-11Revert r260514 because it has a bogus commit message.Eric Fiselier
2016-02-11Teach __hash_table how to handle unordered_map's __hash_value_type.Eric Fiselier
2016-02-11Teach __hash_table how to handle unordered_map's __hash_value_type.Eric Fiselier
2016-02-10Remove changes that snuck in within r260431Eric Fiselier
2016-02-10Recommit r260012 - Cleanup node-type handling in the unordered containers.Eric Fiselier
2016-02-08Revert r260012 due to __gnu_cxx::hash_map breakageEric Fiselier
2016-02-07Cleanup node-type handling in the unordered containersEric Fiselier
2016-01-23Revert "unordered_map: Reuse insert logic in emplace when possible, NFC"Duncan P. N. Exon Smith
2016-01-22unordered_map: Reuse insert logic in emplace when possible, NFCDuncan P. N. Exon Smith
2015-12-30Use __rebind_pointer to avoid #ifdef blockEric Fiselier
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-07The rest of N4279 and LWG#2464 - for unordered_mapMarshall 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-05-06Replace two naked references of 'std::' with the macro '_VSTD::'. No function...Marshall Clow
2015-04-07In many places, there was an #ifdef/#else block that selected one of two impl...Marshall Clow
2014-08-10NFC. Move definition of _LIBCPP_ASSERT into __debug header and remove externa...Eric Fiselier
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-12LWG Issue 2210 (Part #6): unordered_map and unordered_multimapMarshall Clow
2013-09-12A collection of minor type-o fixes. The first two aren't testable, but all t...Howard Hinnant
2013-08-22Zhihao Yuan noted that there were a few unneeded statements. Eliminated the...Howard Hinnant
2013-08-12Nico Rieck: this patch series fixes visibility issues on Windows as explaine...Howard Hinnant
2013-07-30Debug mode for unordered_multimap. Some mods were done for unordered_map as ...Howard Hinnant
2013-07-23Debug mode for unordered_set. I believe this to be fairly complete forHoward 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-22Implement 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-12As an extension, support incomplete types in the unordered containers to matc...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