1. c9f5f10 Add two new macros: _LIBCPP_NODISCARD_AFTER_CXX17 and _LIBCPP_CONSTEXPR_AFTER_CXX17, along with a way to turn off the NODISCARD one: _LIBCPP_DISABLE_NODISCARD_AFTER_CXX17. No one is using these yet, but we will be ... soon by Marshall Clow · 7 years ago
  2. e208d08 Rename identifiers named `__output` by Alexander Richardson · 7 years ago
  3. 5272877 Implement LWG2950: std::byte operations are misspecified by Marshall Clow · 7 years ago
  4. e1cfe7a Implement LWG2952: iterator_traits should work for pointers to cv T by Marshall Clow · 7 years ago
  5. edd7e05 Implement P0550R2: Transformation Trait remove_cvref by Marshall Clow · 7 years ago
  6. b4a34c0 Add _LIBCPP_INLINE_VISIBILITY to __compressed_pair_elem members by Alex Lorenz · 7 years ago
  7. c3f25ab Revert "[libc++] Don't alias quick_exit if __ANDROID_API__ < 21" by Dan Albert · 7 years ago
  8. f56f1bb [libc++] Don't alias quick_exit if __ANDROID_API__ < 21 by Dan Albert · 7 years ago
  9. 9a675c6 Update the synopsis to match the P/R of 2945. No code changes. by Marshall Clow · 7 years ago
  10. a4c272d Implement LWG 3013 - some filesystem members should not be noexcept. by Eric Fiselier · 7 years ago
  11. c3fa965 Fix PR#35119 : set_union misbehaves with move_iterators. Thanks to Denis Yaroshevskiy for both the bug report and the fix. by Marshall Clow · 7 years ago
  12. 76929f6 Mark string_view's constructor from (ptr,len) as noexcept (an extension). Update the tests to check this (and other noexcept bits by Marshall Clow · 7 years ago
  13. 66db4e4 Mark string_view literals as 'noexcept'. Fixes PR#25054. Thanks to Pavel K for the bug report. by Marshall Clow · 7 years ago
  14. b91e69c Fix misguided error message in debug mode. No functional change. Fixes PR#34966 by Marshall Clow · 7 years ago
  15. 24c7353 Fix an unsigned integer overflow in regex that lead to a bad memory access. Found by OSS-Fuzz by Marshall Clow · 7 years ago
  16. 278c0ba Fix UB - signed integer overflow in regex. Thanks to Tim Shen for the patch. Reviewed as https://reviews.llvm.org/D39066 by Marshall Clow · 7 years ago
  17. 6944743 Fix regex bug with ^\W. Thanks to Tim Shen for the patch. Reviewed as https://reviews.llvm.org/D37955 by Marshall Clow · 7 years ago
  18. 1aeb400 Refactor std::list node allocation logic. by Eric Fiselier · 7 years ago
  19. 5ccf043 Refactor _LIBCPP_<LITTLE|BIG>_ENDIAN by Eric Fiselier · 7 years ago
  20. 94c3917 [libc++] Fix PR34898 - vector iterator constructors and assign method perform push_back instead of emplace_back. by Eric Fiselier · 7 years ago
  21. 18dba06 [libc++] Support Microsoft ABI without vcruntime headers by Shoaib Meenai · 7 years ago
  22. 7762784 [libc++] Clarify names of ABI forcing macros by Shoaib Meenai · 7 years ago
  23. 36d0ee6 [libc++] Allow users to explicitly specify ABI by Shoaib Meenai · 7 years ago
  24. 2bba98e [libc++] Add site config option for ABI macros by Shoaib Meenai · 7 years ago
  25. 8a29c9d Add C++17 explicit deduction guides to std::pair. by Eric Fiselier · 7 years ago
  26. 1e32db7 Revert 313789 because gcc doesn't like it by Marshall Clow · 7 years ago
  27. 9641305 Mark the __eval methods on independent_bits_engine (and __independent_bits_engine) as const, since they make no changes to the object. NFC. by Marshall Clow · 7 years ago
  28. e2b6832 Fix a bit of UB in __independent_bits_engine. Fixes PR#34663 by Marshall Clow · 7 years ago
  29. ffe3715 [libc++] Account for Microsoft CRT const overloads by Shoaib Meenai · 7 years ago
  30. ca79c15 [libc++] Remove unnecessary struct tag by Shoaib Meenai · 7 years ago
  31. 2656897 typeinfo: provide a partial implementation for Win32 by Saleem Abdulrasool · 7 years ago
  32. 63d8811 Fix accidental ADL in std::allocator_traits meta-programming. by Eric Fiselier · 7 years ago
  33. ee596eb Apply D28224: 'Throw exception after too many steps' Fixes PR#20291. Thanks to Tim Shen for the patch by Marshall Clow · 7 years ago
  34. 29149d3 Make pbump (internally) handle sizes bigger than MAX_INT. Fixes PR#33725 - thanks to Jonathan Wakely for the report by Marshall Clow · 7 years ago
  35. 60f8ad1 mark mersenne_twister_engine<>::seed(result_type __sd) with _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK to placate UBSAN. Fixes PR#34160 by Marshall Clow · 7 years ago
  36. ff400da Add include of <string> to <system_error>, since things in there return strings. Fixes PR#34529. by Marshall Clow · 7 years ago
  37. f2c4a96 Fix PR34298 - Allow std::function with an incomplete return type. by Eric Fiselier · 7 years ago
  38. d5a494e Revert "Fix PR34298 - Allow std::function with an incomplete return type." by Eric Fiselier · 7 years ago
  39. f83132a Fix PR34298 - Allow std::function with an incomplete return type. by Eric Fiselier · 7 years ago
  40. 0b9db07 Add even more string_view tests. These found some bugs in the default parameter value for rfind/find_last_of/find_last_not_of by Marshall Clow · 7 years ago
  41. ea75e09 Redirect strftime_l to the locale-ignorant strftime on mingw by Martin Storsjo · 7 years ago
  42. 25a78dc Fix PR31166: std::inplace_merge seems to be unstable. Thanks to Jan Wilken Dörrie for the suggested fix. by Marshall Clow · 7 years ago
  43. d4c8905 [NFC] remove trailing WS by Aditya Kumar · 7 years ago
  44. 9b69be4 Spelling by Joerg Sonnenberger · 7 years ago
  45. 3b53fab Change the way the literal operators are defined - now w/o a seperating space. This should be a NFC, but it will change how the compiler parses it. by Marshall Clow · 7 years ago
  46. 6e02e89 Fix libcxx build with glibc 2.26+ by removing xlocale.h include. by Eric Fiselier · 7 years ago
  47. 650a099 Add system header pragma to BSD locale fallback headers. by Eric Fiselier · 7 years ago
  48. b3d6031 Fix PR33727: std::basic_stringbuf only works with DefaultConstructible allocators. Thanks to Jonathan Wakely for the report and suggested fix by Marshall Clow · 7 years ago
  49. 487562f [libc++] Hoist extern template above first use by Shoaib Meenai · 7 years ago
  50. f226a28 Implement P0739R0: 'Some improvements to class template argument deduction integration into the standard library' This is an API change (not ABI change) due to a late change in the c++17 standard by Marshall Clow · 7 years ago
  51. 24047fd Remove addtional parameters in function std::next() and std::prev() by Rachel Craik · 7 years ago
  52. 33e24e1 make sure that we don't call basic_streambuf::gbump with a value bigger than INT_MAX, since it only takes an int. Related to, but not quite the same as PR33725 by Marshall Clow · 7 years ago
  53. bfa81b0 Fix grammar-o in comment. by Nico Weber · 7 years ago
  54. 12ab658 Update _LIBCPP_VERSION and the version in CMakeLists to 6.0 by Hans Wennborg · 7 years ago
  55. da4047d Check for _MSC_VER before defining _LIBCPP_MSVCRT by Bruno Cardoso Lopes · 7 years ago
  56. 7afe61a Add case for c++2a to libc++ and test macros by Marshall Clow · 7 years ago
  57. 0d6a92e [libc++] Clean up cl warning 4231 disabling by Shoaib Meenai · 7 years ago
  58. cd75b28 [libc++] Mark string operator+ _LIBCPP_FUNC_VIS by Shoaib Meenai · 7 years ago
  59. 1beaa5a [libc++] Remove unused _LIBCPP_FUNC_VIS_ONLY by Shoaib Meenai · 7 years ago
  60. de79ab6 Fix unrepresentable enum for clang-cl unstable ABI by Ben Craig · 7 years ago
  61. 12f2b26 Remove <__refstring> header; Move it into source directory. by Eric Fiselier · 7 years ago
  62. d60e344 Revert "[libc++] Refactoring __sync_* builtins; NFC (Reland)" by Eric Fiselier · 7 years ago
  63. 347be61 [libcxx][CMake] Add install path variable to allow overriding the destination by Petr Hosek · 7 years ago
  64. 880dc47 [libc++] Refactoring __sync_* builtins; NFC (Reland) by Weiming Zhao · 7 years ago
  65. 7a188e3 Revert "[libc++] Refactoring __sync_* builtins; NFC" by Weiming Zhao · 7 years ago
  66. f7ed02c [libc++] Refactoring __sync_* builtins; NFC by Weiming Zhao · 7 years ago
  67. 8b30287 optional: Implement LWG 2900 and P0602 by Casey Carter · 7 years ago
  68. e452f6a cmath: Support clang's -fdelayed-template-parsing by Duncan P. N. Exon Smith · 7 years ago
  69. e00d350 Fix a bug in regex_Iterator where it would report zero-length matches forever. Reported as http://llvm.org/PR33681. Thanks to Karen Arutyunov for the report. by Marshall Clow · 7 years ago
  70. c5247b4 Revert "[libcxx] Annotate c++17 aligned new/delete operators with availability" by Akira Hatanaka · 7 years ago
  71. 6850670 [libc++] Hoist explicit instantiation above implicit. NFC by Shoaib Meenai · 7 years ago
  72. a028f3c [libcxx] Annotate c++17 aligned new/delete operators with availability by Akira Hatanaka · 7 years ago
  73. 3477ae4 Implement inclusive_scan/transform_inclusive_scan for C++17. by Marshall Clow · 7 years ago
  74. b47a9bc Add a missing SFINAE condition to the `variant`'s converting constructor. by Michael Park · 7 years ago
  75. 2b93569 iostreams: Fix deployment target for streams dylib support by Duncan P. N. Exon Smith · 7 years ago
  76. 10a803d any: Add availability for experimental::bad_any_cast by Duncan P. N. Exon Smith · 7 years ago
  77. 7320213 Allow the libc++ C header wrappers to be included when compiling C. by Eric Fiselier · 7 years ago
  78. 660d265 Allow coroutine_handle<const T> to support creation from const references to the promise_type by Eric Fiselier · 7 years ago
  79. daea5bc Add missing include to __bsd_locale_fallbacks.h. Fixes https://bugs.llvm.org/show_bug.cgi?id=33370 by Marshall Clow · 7 years ago
  80. 5f8e0d7 attempt to fix GCC ToT build failures by Eric Fiselier · 7 years ago
  81. aa356d6 [locale] Avoid copy of __atoms when char_type is char by Aditya Kumar · 7 years ago
  82. 405af58 Rework some metaprogramming to use the detection idiom; no functional change by Marshall Clow · 7 years ago
  83. ff5f9b2 Add some const_casts in places where we were implicitly casting away constness. No functional change, but now they're explicit by Marshall Clow · 7 years ago
  84. 899f113 In several places in std::allocator<const T> (and one in shared_ptr, we were casting a 'const T*' to a 'void *' - implicitly casting away the const. Add const_cast to make that explicit. No functional change. by Marshall Clow · 7 years ago
  85. 13498f6 PR32476: __nop_locale_mgmt.h not needed with newlib 2.5+ by James Y Knight · 7 years ago
  86. c590dae Add an `__is_inplace_index` metafunction. by Michael Park · 7 years ago
  87. 0175dfd Implement the non-parallel versions of reduce and transform_reduce for C++17 by Marshall Clow · 7 years ago
  88. 246eb89 Fix bug 33389 - __is_transparent check requires too much by Marshall Clow · 7 years ago
  89. bc37f8d Make tuple_element static_assert in pair if the index is out of range. Also, add a message to variant_alternative<> in the similar case (it already asserted). Add tests for this by Marshall Clow · 7 years ago
  90. 568c481 [array.tuple]/1 says that instantiating tuple_element<N, array<T, M>> is ill-formed if N >= M. We didn't do that. Add a static_assert to cause a failure, and a test that checks that we failed by Marshall Clow · 7 years ago
  91. fb97c44 Implement the non-parallel versions of exclusive_scan and transform_exclusive_scan. Reviewed as https://reviews.llvm.org/D34038. by Marshall Clow · 7 years ago
  92. 3113ac6 Add tests for class template deduction on std::tuple. by Eric Fiselier · 7 years ago
  93. d66e43a Revert r304955 - Fix class template deduction for scoped_lock. by Eric Fiselier · 7 years ago
  94. 1cf5591 Fix class template deduction for scoped_lock. by Eric Fiselier · 7 years ago
  95. 276a69c Fix compile error with Bionic's PTHREAD_MUTEX_INITIALIZER by Eric Fiselier · 7 years ago
  96. 3762fe6 Implement LWG 2904. by Michael Park · 7 years ago
  97. 57a009a add missing constexpr to optional::value_or by Casey Carter · 7 years ago
  98. b1d8bca Fix some undefined behavior in __hash_table. Thanks to vsk for the report and the patch. Reviewed as https://reviews.llvm.org/D33588. by Marshall Clow · 7 years ago
  99. 59e24fe Fix more unreserved names by Eric Fiselier · 7 years ago
  100. bf86c8f Rename unreserved names in tuple by Eric Fiselier · 7 years ago