1. 546498c make the associative containers do the right thing for propogate_on_container_assignment. Fixes bug #29001. Tests are only for <map> right now - more complete tests will come when we revamp our allocator testing structure. by Marshall Clow · 9 years ago
  2. 7310ec8 Fix undefined behavior in __tree by Eric Fiselier · 9 years ago
  3. 1a93312 Fix static assert problem on gcc; remove XFAILs that I put in in r274250 by Marshall Clow · 9 years ago
  4. 0c99f18 Implement LWG#2436: 'Comparators for associative containers should always be CopyConstructible' by Marshall Clow · 9 years ago
  5. dc414cd Teach map/unordered_map how to optimize 'emplace(Key, T)'. by Eric Fiselier · 9 years ago
  6. 83c9dc1 Extract key to avoid preemptive mallocs in insert/emplace in associative containers by Eric Fiselier · 9 years ago
  7. db21506 Teach __tree how to handle map's __value_type by Eric Fiselier · 9 years ago
  8. 227b47c Remove all usages of "const" node pointer typedefs in the assoc containers. by Eric Fiselier · 9 years ago
  9. 5526348 Cleanup node-type handling in the associative containers. by Eric Fiselier · 9 years ago
  10. 3426a86 First half of LWG#2354: 'Unnecessary copying when inserting into maps with braced-init syntax' by Marshall Clow · 10 years ago
  11. 5cf84e0 Use __rebind_pointer to avoid #ifdef block by Eric Fiselier · 10 years ago
  12. 8966350 Fix warnings about pessimizing return moves for C++11 and higher by Dimitry Andric · 10 years ago
  13. 02bb4bd Fix warnings in array and assoc containers by Eric Fiselier · 10 years ago
  14. 7d914d1 Implement the first part of N4258: 'Cleaning up noexcept in the Library'. This patch deals with swapping containers, and implements a more strict noexcept specification (a conforming extension) than the standard mandates. by Marshall Clow · 10 years ago
  15. 66302c6 In many places, there was an #ifdef/#else block that selected one of two implmentations of rebind_alloc based on whether or not we had template aliases. Create a helper struct to encapsulate that bit of logic, and replace all the ifdefs with uses of that struct. No functionality change intented. by Marshall Clow · 10 years ago
  16. 1312198 Fix another -Wunused-local-typedef warning in include/__tree. by Dimitry Andric · 10 years ago
  17. 9c8e663 Allow declaration of map and multimap iterator with incomplete mapped type. Patch from eugenis by Eric Fiselier · 10 years ago
  18. 59f573f Remove several unused forward declarations. Fixes PR22605. by Marshall Clow · 10 years ago
  19. 01c1c6f Fix PR22366. When move-constructing an associative container and explicitly passing an allocator that compares different, we were not calling the destructor of the elements in the moved-from container. by Marshall Clow · 11 years ago
  20. 140e8f5 Remove node from a container before destroying it. Thanks to Alexander Potapenko for pointing this out. by Marshall Clow · 11 years ago
  21. 9a894d9 Zhihao Yuan noted that there were a few unneeded statements. Eliminated the unnecessary ones, and commented the ones that are there for non-obvious reasons such as to help things limp along in C++03 language mode. by Howard Hinnant · 12 years ago
  22. 0f678bd Nico Rieck: this patch series fixes visibility issues on Windows as explained in <http://lists.cs.uiuc.edu/pipermail/cfe-dev/2013-August/031214.html>. by Howard Hinnant · 12 years ago
  23. 051c848 N3644 tests for map/multimap/set/multiset. Drive-by NOEXCEPT for __tree_const_iterator constructor. Fix comment typos in other tests by Marshall Clow · 12 years ago
  24. 70342b9 Implement full support for non-pointer types in custom allocators. This is for the associative containers only. This work still needs to be done on the unordered and sequence containers. Fixes http://llvm.org/bugs/show_bug.cgi?id=15978 by Howard Hinnant · 12 years ago
  25. 83eade6 No functionality change at this time. I've split _LIBCPP_VISIBLE up into two flags: _LIBCPP_TYPE_VIS and _LIBCPP_FUNC_VIS. This is in preparation for taking advantage of clang's new __type_visibility__ attribute. by Howard Hinnant · 12 years ago
  26. 33be35e Dimitry Andric: many visibility fixes. Howard: Much appreciated. Can you send me a patch to CREDITS.TXT? by Howard Hinnant · 13 years ago
  27. 9996844 Further macro protection by replacing _[A-Z] with _[A-Z]p by Howard Hinnant · 14 years ago
  28. 08e1747 Windows support by Ruben Van Boxem. by Howard Hinnant · 14 years ago
  29. 0949eed _STD -> _VSTD to avoid macro clash on windows by Howard Hinnant · 14 years ago
  30. 2b1b2d4 Provide names for template and function parameters in forward declarations. The purpose is to aid automated documentation tools. by Howard Hinnant · 14 years ago
  31. 8b53768 Made more implementation details of [multi]map/set noexcept. by Howard Hinnant · 14 years ago
  32. 7686add noexcept for <map>. by Howard Hinnant · 14 years ago
  33. 7ac6af7 Qualify calls to std::next(), to avoid conflicts with by Douglas Gregor · 14 years ago
  34. d615e47 Chris Jefferson submitted this patch to fix http://llvm.org/bugs/show_bug.cgi?id=9351 by Howard Hinnant · 14 years ago
  35. d0a2fbf http://llvm.org/bugs/show_bug.cgi?id=9444 by Howard Hinnant · 14 years ago
  36. 2529d02 Qualify calls to addressof with std::. Bug 9106 by Howard Hinnant · 15 years ago
  37. b64f8b0 license change by Howard Hinnant · 15 years ago
  38. 333f50d visibility-decoration. by Howard Hinnant · 15 years ago
  39. 73d21a4 Changed __config to react to all of clang's currently documented has_feature flags, and renamed _LIBCPP_MOVE to _LIBCPP_HAS_NO_RVALUE_REFERENCES to be more consistent with the rest of the libc++'s flags, and with clang's nomenclature. by Howard Hinnant · 15 years ago
  40. 324bb03 Fixing whitespace problems by Howard Hinnant · 15 years ago
  41. d444470 now works with -fno-exceptions and -fno-rtti by Howard Hinnant · 15 years ago
  42. f5256e1 Wiped out some non-ascii characters that snuck into the copyright. by Howard Hinnant · 15 years ago
  43. bc8d3f9 libcxx initial import by Howard Hinnant · 15 years ago