1. 1d4a1ed Revert "Update aosp/master libcxx rebase to r263688" by Dan Albert · 8 years ago
  2. 566bcb4 Fix most GCC attribute ignored warnings by Eric Fiselier · 8 years ago
  3. f4f7d8f Recommit r263036 with additional inlining, so that it will continue to work with existing system dylibs. Implements LWG#2583 by Marshall Clow · 8 years ago
  4. fadd1db Revert r263036, it's ABI-breaking. by Nico Weber · 8 years ago
  5. f40ec90 Implement LWG#2579: Inconsistency wrt Allocators in basic_string assignment vs. basic_string::assign by Marshall Clow · 8 years ago
  6. ff0b9f5 Implement LWG#2583: There is no way to supply an allocator for basic_string(str, pos) by Marshall Clow · 8 years ago
  7. f532a70 Implement P0272R1: Give 'std::string' a non-const '.data()' member function by Marshall Clow · 8 years ago
  8. f6d6b51 Implement P0253R1: Fixing a design mistake in the searchers interface. by Marshall Clow · 8 years ago
  9. df9db31 Fix PR#25973 : 'basic_string::assign(InputIt, InputIt) doesn't provide the strong exception safety guarantee'. This turned out to be a pervasive problem in <string>, which required a fair amount of rework. Add in an optimization for when iterators provide noexcept increment/comparison/assignment/dereference (which covers many of the iterators in libc++). Reviewed as http://reviews.llvm.org/D15862 by Marshall Clow · 9 years ago
  10. a3b25f8 Cleanup: move visibility/linkage attributes to the first declaration. by Evgeniy Stepanov · 9 years ago
  11. 4f01aa8 ABI versioning macros for libc++. by Evgeniy Stepanov · 9 years ago
  12. 7ed093b Implement LWG#2063, and update the issues links to point to the github generated pages by Marshall Clow · 9 years ago
  13. e2d4892 Fix most GCC warnings during build. Only -Wattribute left. by Eric Fiselier · 9 years ago
  14. 4f24182 [libcxx] Optimize away unneeded length calculation in basic_string::compare(const char*) by Eric Fiselier · 9 years ago
  15. af961ed implement more of N4258 - Cleaning up noexcept in the standard library. Specifically add new noexcept stuff to vector and string's move-assignment operations by Marshall Clow · 9 years ago
  16. 9a3c689 Change char_traits<char16_t>::eof() to return 0xFFFF instead of 0xDFFF. Fixes PR#24342 by Marshall Clow · 9 years ago
  17. 692177d Enable and fix warnings during the build. by Eric Fiselier · 9 years ago
  18. 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 · 9 years ago
  19. c912c0c While applying N4258, I forgot about LWG#2455, which modified the modifications. Correct those - h/t: Howard by Marshall Clow · 9 years ago
  20. 7b193f7 More of N4258 implementation. Mark all of our test_allocators as noexcept constructible. Make the constructors for basic_string noexcept all the time (under C++14). Update tests to reflect the new world order. More to come. by Marshall Clow · 9 years ago
  21. 6bcbced Rooting out more undefined behavior in char_traits. by Marshall Clow · 9 years ago
  22. f2e36ef Move the test for zero-length into the char_traits (from string_view). Add tests to char_traits specializations by Marshall Clow · 9 years ago
  23. b991975 [libcxx] Fix use of operator comma where the types can be user defined by Eric Fiselier · 10 years ago
  24. 6d9505a Fix char_traits functions for GCC compatibility. by Dan Albert · 10 years ago
  25. b953610 NFC. Move definition of _LIBCPP_ASSERT into __debug header and remove external include guards. by Eric Fiselier · 10 years ago
  26. d5549cc Fix bug #20335 - memory leak when move-constructing a string with unequal allocator. Thanks to Thomas Koeppe for the report by Marshall Clow · 10 years ago
  27. 37025e1 Make the helper routines in string really be constexpr. This required a bit of refacoring in algorithm as well. Give them better names while we're at it. All of these are internal rotines; no visible functionality change. by Marshall Clow · 10 years ago
  28. 360f319 Preparation for <string_view>. More helper functions that can be shared between <string> and <string_view>. No functionality change by Marshall Clow · 10 years ago
  29. ec34c48 Fix typos by Alp Toker · 10 years ago
  30. a93b5e2 Implement LWG #2268: Setting a default argument in the declaration of a member function assign of std::basic_string. by Marshall Clow · 10 years ago
  31. 8eb5acc Remove tabs that crept in during an earlier refactoring. No functionality change by Marshall Clow · 10 years ago
  32. b671fc9 Refactor some of the operations in <string> so that they can be reused; no functionality change by Marshall Clow · 11 years ago
  33. ecc8d7b Fix an off-by-one error in basic_string::__grow_by, where it would incorrectly throw length_error (instead of bad_alloc) when attempting to resize the string to 'max_size()'. Add tests for resizing to max_size +/-1 by Marshall Clow · 11 years ago
  34. 09f8550 Fixes PR17148 by Marshall Clow · 11 years ago
  35. 8d9dd7a Mark namespaces for user defined literals as 'inline' by Marshall Clow · 11 years ago
  36. 1e56424 G M: Changes all references to "x inline" to "inline x" where x = _libcpp_always_inline or _libcpp_inline_visibility macros. by Howard Hinnant · 11 years ago
  37. 499cea1 Debug mode for string. This commit also marks the first time libc++ debug-mode has found a bug (found one in regex). Had to play with extern templates a bit to get this to work since string is heavily used within libc++.dylib. by Howard Hinnant · 11 years ago
  38. 7f76450 Xing Xue: port to IBM XLC++/AIX. by Howard Hinnant · 11 years ago
  39. 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 · 11 years ago
  40. ab61b2c War on tabs by Howard Hinnant · 11 years ago
  41. e9df0a5 Nico Rieck: Currently _MSC_VER and _WIN32 are used to guard code which is by Howard Hinnant · 11 years ago
  42. 1523432 Implement string suffixes from N3642 by Marshall Clow · 11 years ago
  43. 9dcdcde Implement full support for non-pointer pointers in custom allocators for string. This completes the custom pointer support for the entire library. by Howard Hinnant · 11 years ago
  44. 1546718 This patch introduces an alternative layout for basic_string which when the string is short, the data pointer will be word-aligned. It can be activated with -D_LIBCPP_ALTERNATE_STRING_LAYOUT. These two different layouts (the default and _LIBCPP_ALTERNATE_STRING_LAYOUT) are not ABI compatible with each other. Once one is chosen for a given platform, it is disruptive to change it. by Howard Hinnant · 11 years ago
  45. 08dd253 Modest performance improvement for std::string's operator==. by Howard Hinnant · 11 years ago
  46. 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 · 11 years ago
  47. 635bbbb Revert accidental check-in. These changes are probably good, but premature at this point. by Howard Hinnant · 11 years ago
  48. 46c49d1 Michael van der Westhuizen: The attached patch add support for building against libc++abi and libcxxrt to CMake builds of libc++. by Howard Hinnant · 11 years ago
  49. 352bd3a Klaas de Vries: Fix bug in libc++'s std::string::find_first_not_of. by Howard Hinnant · 12 years ago
  50. ff92677 Provide a way to disable use of extern templates in libc++. This is intended for the clients of libc++, not the libc++ build. The dylib should always contain the extern templates. To disable the client needs to put -D'_LIBCPP_EXTERN_TEMPLATE(...)=' on the command line. by Howard Hinnant · 12 years ago
  51. 9c0df14 Rename uses of _ and __ because these are getting stepped on by macros from other system code. by Howard Hinnant · 12 years ago
  52. 1dc6f7a Don't neglect to "return *this". by Argyrios Kyrtzidis · 12 years ago
  53. 03d7181 constexpr applied to <string>. by Howard Hinnant · 12 years ago
  54. c00f75d Installation of CityHash by Craig Silverstein by Howard Hinnant · 13 years ago
  55. 40c13d3 Starting using murmur2 when combining multiple size_t's into a single hash, and also for basic_string. Also made hash<thread::id> ever so slighly more portable. I had to tweak one test which is questionable (definitely not portable) anyway. by Howard Hinnant · 13 years ago
  56. ec3773c Quash a whole bunch of warnings by Howard Hinnant · 13 years ago
  57. 66c6f97 Add protection from min/max macros by Howard Hinnant · 13 years ago
  58. 78b6828 More windows port work by Ruben Van Boxem by Howard Hinnant · 13 years ago
  59. 08e1747 Windows support by Ruben Van Boxem. by Howard Hinnant · 13 years ago
  60. 9cbee43 Fix const correctness bug in __move_assign. Found and fixed by Ion Gaztañaga. by Howard Hinnant · 13 years ago
  61. 3fdbbd2 Don't move assign string::allocator_type when propagate_on_container_move_assignment is false. by Howard Hinnant · 13 years ago
  62. e3e3291 Fixed PR10574: http://llvm.org/bugs/show_bug.cgi?id=10574 by Howard Hinnant · 13 years ago
  63. affd9e5 Add a new hash class in __gnu_ext for the extension containers. There by Sean Hunt · 13 years ago
  64. fa06d75 Optimization of string::operator< by M.E. O'Neill. Discussion in http://llvm.org/bugs/show_bug.cgi?id=10461 by Howard Hinnant · 13 years ago
  65. 2644a7b http://llvm.org/bugs/show_bug.cgi?id=10461 by Howard Hinnant · 13 years ago
  66. 464aa5c http://llvm.org/bugs/show_bug.cgi?id=10390 by Howard Hinnant · 13 years ago
  67. ac6de54 Fixing up some ABI issues by Howard Hinnant · 13 years ago
  68. 0949eed _STD -> _VSTD to avoid macro clash on windows by Howard Hinnant · 13 years ago
  69. 2b1b2d4 Provide names for template and function parameters in forward declarations. The purpose is to aid automated documentation tools. by Howard Hinnant · 13 years ago
  70. 53f7d4c Bring noexcept for <string> inline with other containers. by Howard Hinnant · 13 years ago
  71. a6119a8 noexcept for Chapter 21 [strings]. by Howard Hinnant · 13 years ago
  72. 9f193f2 Add always_inline to string move constructors by Howard Hinnant · 14 years ago
  73. 04240d9 Reverting an old optimization that conflicts with the new allocator model, and causes some test casees to compile that shouldn't. by Howard Hinnant · 14 years ago
  74. 2d72b1e Effort to reduce the number of exported symbols by Howard Hinnant · 14 years ago
  75. 7b2cb48 LWG 1323 by Howard Hinnant · 14 years ago
  76. e32b5e2 Update <string> to use allocator_traits. by Howard Hinnant · 14 years ago
  77. 8d7a955 visibility-decoration. by Howard Hinnant · 14 years ago
  78. 36cdf02 I am experimenting with putting visibility-default attributes on all struct/classes in libc++. This checkin decorates only basic_string and vector as an experiment, and for review by those in this audience that might know more about visibilty than I do. If I get no negative feedback on this procedure I will begin to decorate the entire library in this way. by Howard Hinnant · 14 years ago
  79. 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 · 14 years ago
  80. 324bb03 Fixing whitespace problems by Howard Hinnant · 14 years ago
  81. 60a0a8e patch by Jesse Towner, and bug fix by Sebastian Redl by Howard Hinnant · 14 years ago
  82. a6a062d [string.conversions] by Howard Hinnant · 14 years ago
  83. adff489 patch by Jeffrey Yasskin for porting to Ubuntu Hardy. Everything was accepted except there were some bug fixes needed in <locale> for the __nolocale_* series. For the apple branch I ended up using templates instead of the var_args solution because it seemed both safer and more efficient. by Howard Hinnant · 14 years ago
  84. 03aad81 [rand.dist.bern.bin]. The evaluation function for this binomial distribution is hopefully just a placeholder. It is using the simplest and slowest method for computing the distribution and needs to be upgraded. by Howard Hinnant · 14 years ago
  85. f5256e1 Wiped out some non-ascii characters that snuck into the copyright. by Howard Hinnant · 14 years ago
  86. bc8d3f9 libcxx initial import by Howard Hinnant · 14 years ago