1. e6f91d8 Make libc++'s versioning namespace customizable by Eric Fiselier · 6 years ago
  2. 94ce26b Unify definition of _LIBCPP_BEGIN/END_NAMESPACE_STD by Eric Fiselier · 6 years ago
  3. 207b919 Bug 39129: Speeding up partition_point/lower_bound/upper_bound/ by using unsigned division by 2 when possible. by Eric Fiselier · 6 years ago
  4. 640fa25 [libc++] Use exclude_from_explicit_instantiation instead of always_inline by Louis Dionne · 6 years ago
  5. 293b83d Fix PR39458 _LIBCPP_DEBUG breaks heterogeneous compare. by Eric Fiselier · 6 years ago
  6. e696826 Fix incorrect use of aligned allocation in get_temporary_buffer. by Eric Fiselier · 6 years ago
  7. 5be2163 Run the min/max tests agaist the header <charconv>. Fix that header so it passes. NFC. by Marshall Clow · 6 years ago
  8. b3ae0c8 fix incorrect placement of _LIBCPP_ALWAYS_INLINE in valarray by Eric Fiselier · 6 years ago
  9. e09f85b Implement sized deallocation for std::allocator and friends. by Eric Fiselier · 6 years ago
  10. 07f95bd [libc++] Make sure we can build libc++ with -fvisibility=hidden by Louis Dionne · 6 years ago
  11. 92d8736 Revert "Fix use of __libcpp_deallocate in dynarray" by Eric Christopher · 6 years ago
  12. 1b9ee84 Temporarily Revert "Implement sized deallocation for std::allocator and friends." by Eric Christopher · 6 years ago
  13. d03e037 Fix use of __libcpp_deallocate in dynarray by Eric Fiselier · 6 years ago
  14. 0cfdf55 Implement sized deallocation for std::allocator and friends. by Eric Fiselier · 6 years ago
  15. 842383f Revert "Teach __libcpp_is_floating_point that __fp16 and _Float16 are" by Petr Hosek · 6 years ago
  16. ec22e35 Off-by-one errors strike again. Thank goodness for ASAN and the bots. by Marshall Clow · 6 years ago
  17. b994bfe When filling a vector<bool> with stuff, initialize the last word of the storage that you're touching. Otherwise, when we lay down the bits with operator&=, we get UB from reading uninitialized memory. Fixes Bug 39354. Thanks to David Wagner for the bug report. by Marshall Clow · 6 years ago
  18. 1f63d28 Update commnents to reflect the changes for LWG#3127. NFC by Marshall Clow · 6 years ago
  19. 3d1d923 Update commnents to reflect the changes for LWG#3122. NFC by Marshall Clow · 6 years ago
  20. d74c17e [libcxx] Avoid repeating the definition of std:: namespaces by Louis Dionne · 6 years ago
  21. 3845a65 [libcxx] Remove _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY by Louis Dionne · 6 years ago
  22. cc5c12d Recommit <chrono> changes with a couple xtra tests marked to fail on apple's clang. Reviewed as D51762 by Marshall Clow · 6 years ago
  23. 7e3ab17 Partial fix for PR38964. (<string> can't be built with gcc -std=c++03) Reviewed as https://reviews.llvm.org/D52240 by Marshall Clow · 6 years ago
  24. 7f20dc6 Revert r344529 "Implement the first part of the calendar support for C++20" by Artem Dergachev · 6 years ago
  25. 1b8e200 Wrap up the new chrono literals in an #ifdef so that old versions of clang don't complain. I'm looking at you, clang 5.0.1 by Marshall Clow · 6 years ago
  26. fc25eeb Implement the first part of the calendar support for C++20. This is still incomplete; there will be more patches coming. Reviewed as D51762 by Marshall Clow · 6 years ago
  27. b233fda Revert commit r344254; does not work with C++03 by Marshall Clow · 6 years ago
  28. 2199647 Prefer to use the __is_XXX compiler intrinsics to the (old, busted) __has_XXX intrinsics when implementing type traits. Thanks to Richard Smith for the patch. by Marshall Clow · 6 years ago
  29. f9c56da Fix use of removed _LIBCPP_HAS_NO_BUILTIN_ALIGNED_OPERATOR_NEW_DELETE by Eric Fiselier · 6 years ago
  30. 657a130 Distinguish between library and language support for aligned allocation. by Eric Fiselier · 6 years ago
  31. f7d5bd2 Annotate scoped_lock as with scoped_lockable attribute by Aaron Puchert · 6 years ago
  32. c7cc669 Do the math in uniform_int_distribution::operator() as unsigned to prevent UB when overflowing. Also add a UBSAN notification that we're ffine with unsigned overflow. This fixes PR#32617. Thanks to Vincent & Christoph for their help with this issue. by Marshall Clow · 6 years ago
  33. 0722603 [libc++][NFC] Add error messages to a couple of static_asserts in span by Louis Dionne · 6 years ago
  34. d545268 Attempt to fix aligned allocation configuration under clang-cl by Eric Fiselier · 6 years ago
  35. 1ef0f10 Fix Shadowing warning on Windows by Eric Fiselier · 6 years ago
  36. f7fac08 Fix even more Clang warnings. by Eric Fiselier · 6 years ago
  37. 16357ee [libc++] Remove Fuchsia-specific knowledge to pick the ABI version by Louis Dionne · 6 years ago
  38. 13cf3b9 [libc++] Add deprecated attributes to many deprecated components by Louis Dionne · 6 years ago
  39. 5981b33 [NFC][libcxx] Rename helpers with 4 underscores to something more reasonable by Louis Dionne · 6 years ago
  40. caf40ae [libc++] Add _LIBCPP_ENABLE_NODISCARD and _LIBCPP_NODISCARD_EXT to allow pre-C++2a [[nodiscard]] by Roman Lebedev · 6 years ago
  41. e59d098 Revert "Implement LWG 2221 - No formatted output operator for nullptr." by Volodymyr Sapsai · 6 years ago
  42. f06032b Implement LWG 2221 - No formatted output operator for nullptr. Reviewed as https://reviews.llvm.org/D44263 by Marshall Clow · 6 years ago
  43. 989927c Don't require relops on variant alternatives to all return the same type. by Eric Fiselier · 6 years ago
  44. 35a0c2c Fix typo by Fangrui Song · 6 years ago
  45. e3973fd Implement the infrastructure for feature-test macros. Very few actual feature test macros, though. Reviewed as: https://reviews.llvm.org/D51955 by Marshall Clow · 6 years ago
  46. ec25143 Implement LWG #3017. list splice functions should use addressof by Marshall Clow · 6 years ago
  47. bf9b545 Update the synopsis for <version>. NFC by Marshall Clow · 6 years ago
  48. 53c8e25 Fix PR# 38900 - don't call swap inside of random_shuffle when we'd be swapping an element with itself by Marshall Clow · 6 years ago
  49. 8c58c22 [asan] Update a vector's storage annotation during destruction. Reviewed as https://reviews.llvm.org/D50101. Thanks to bobsayshilol (Ben) for the patch. by Marshall Clow · 6 years ago
  50. 8220dac Last week, someone noted that a couple of the time_point member functions were not constexpr. I looked, and they were right. They were made constexpr in p0505, so I looked at all the other bits in that paper to make sure that I didn't miss anything else. There were a couple methods in the synopsis that should have been marked constexpr, but the code was correct. by Marshall Clow · 6 years ago
  51. c4f0f1e Use addressof instead of operator& in make_shared. Fixes PR38729. As a drive-by, make the same change in raw_storage_iterator (twice). by Marshall Clow · 6 years ago
  52. f45b25b Fix ODR violation: namespace-scope helpers should not be declared 'static'. by Richard Smith · 6 years ago
  53. cd04d45 [libc++] Fix handling of negated character classes in regex by Louis Dionne · 6 years ago
  54. 39ad1d1 [libc++] Remove race condition in std::async by Louis Dionne · 6 years ago
  55. b2dd769 Comment out #define __cpp_lib_node_extract, we only support half of that functionality by Erik Pilkington · 6 years ago
  56. c39fe08 Add diagnostics for min/max algorithms when a InputIterator is used. by Eric Fiselier · 6 years ago
  57. 4c90425 Fix Bug 38644: multimap::clear() missing exception specifier. Add noexcept tests for all the containers that have clear(). by Marshall Clow · 6 years ago
  58. 36711b2 Teach libc++ to use native NetBSD's max_align_t by Kamil Rytarowski · 6 years ago
  59. f017e1e Refactor the newly created <bit> header. Still (almost) NFC. Reviewed as https://reviews.llvm.org/D50876 by Marshall Clow · 6 years ago
  60. 6c37235 Recommit r339943 - Establish the <bit> header. NFC yet. Reviewed as https://reviews.llvm.org/D50815 - with a fix for the sanitizer bots by Marshall Clow · 6 years ago
  61. 245791a Revert "Establish the <bit> header. NFC yet. Reviewed as https://reviews.llvm.org/D50815" by Vitaly Buka · 6 years ago
  62. aec9e0e [libc++] Use correct rand.eng.mers all-zeroes seed sequence fallback by Hubert Tong · 6 years ago
  63. fbd4673 Establish the <bit> header. NFC yet. Reviewed as https://reviews.llvm.org/D50815 by Marshall Clow · 6 years ago
  64. 61b0a00 [libcxx] By default, do not use internal_linkage to hide symbols from the ABI by Louis Dionne · 6 years ago
  65. 43d7c79 Selectively import timespec_get into namespace std, since some C libraries don't have it. Reviewed as https://reviews.llvm.org/D50799 by Marshall Clow · 6 years ago
  66. 6217600 libcxx: Mark __temp_value::__temp_value as _LIBCPP_NO_CFI. by Peter Collingbourne · 6 years ago
  67. 51a2f0c [libc++] Detect C11 features on non-Clang compilers by Louis Dionne · 6 years ago
  68. 836b7e9 [libc++] Enable aligned allocation based on feature test macro, irrespective of standard by Louis Dionne · 6 years ago
  69. 5ae92f0 [libc++] Add the _LIBCPP_HIDE_FROM_ABI_AFTER_V1 macro by Louis Dionne · 6 years ago
  70. 2580fdb [NFC][libc++] Consistently use spaces to indent by Louis Dionne · 6 years ago
  71. 88f5d7a Implement P1023: constexpr comparison operators for std::array by Marshall Clow · 6 years ago
  72. 48282b6 Implement P0887: The identity metafunction by Marshall Clow · 6 years ago
  73. db9b3d8 Update version to 8.0.0svn: cmake, includes files and docs by Hans Wennborg · 6 years ago
  74. f7410f4 [libc++] Fix GCC 7.2.0 macro redefinition warning by Louis Dionne · 6 years ago
  75. dc38e97 [libc++][C++17] Elementary string conversions for integral types by Zhihao Yuan · 6 years ago
  76. 6952d14 [libc++] Remove _LIBCPP_BUILDING_XXX macros, which are redundant since _LIBCPP_BUILDING_LIBRARY by Louis Dionne · 6 years ago
  77. 36fc737 First half of C++17's splicing maps and sets by Erik Pilkington · 6 years ago
  78. 4983a7a Test for the presence of a bunch of new macros for c++17. These macros come from C11. Part of P0063 by Marshall Clow · 6 years ago
  79. 8a16d40 import timespec and timespec_get into namespace std if we're under c++17 or later AND the underlying C library has them. Fixes PR#38220, but doesn't implement all of P0063 yet. by Marshall Clow · 6 years ago
  80. 154f393 Re-apply "[libcxx] implement <simd> ABI for Clang/GCC vector extension, constructors, copy_from and copy_to." by Tim Shen · 6 years ago
  81. b6244cf Revert "[libcxx] implement <simd> ABI for Clang/GCC vector extension, constructors, copy_from and copy_to." by Tim Shen · 6 years ago
  82. 3732995 [libcxx] implement <simd> ABI for Clang/GCC vector extension, constructors, copy_from and copy_to. by Tim Shen · 6 years ago
  83. 8634f6f [libc++] Exclude posix_l/strtonum fallback inclusion for newlib > 2.4 by Jordan Rupprecht · 6 years ago
  84. 67fff22 [libc++] Introduce _LIBCPP_HIDE_FROM_ABI to replace _LIBCPP_INLINE_VISIBILITY by Louis Dionne · 6 years ago
  85. 7e850a8 Move Filesystem namespace definition out of a clang specific ifdef block. by Eric Fiselier · 6 years ago
  86. 0be5527 Attempt to unbreak *all the bots* by Eric Fiselier · 6 years ago
  87. a0866c5 Implement <filesystem> by Eric Fiselier · 6 years ago
  88. 162ce3f [CMake] Don't install c++abi headers in standalone libc++ build by Petr Hosek · 6 years ago
  89. 81872e9 [libc++] Use __int128_t to represent file_time_type. by Eric Fiselier · 6 years ago
  90. a1ae56c [libc++] Factor duplicate code into function templates by Louis Dionne · 6 years ago
  91. 2493db4 Make <experimental/filesystem> explicitly require C++11. by Eric Fiselier · 6 years ago
  92. 0fbaa11 Ensure path::iterator and PathParser share the same enumeration values. by Eric Fiselier · 6 years ago
  93. 2be41bb Stop wrapping __has_include in another macro by Alexander Richardson · 6 years ago
  94. ad7e935 Fix use of incorrect _LIBCXX macro (should be _LIBCPP). by Eric Fiselier · 6 years ago
  95. 39bc5e7 fix nesting of namespace and standard-version check. Also include <__config> by Marshall Clow · 6 years ago
  96. fbd3e84 Implement <span>. Reviewed as https://reviews.llvm.org/D49338 by Marshall Clow · 6 years ago
  97. 2c11635 Recommit "Use possibly cached directory entry values when performing recursive directory iteration." by Eric Fiselier · 6 years ago
  98. 0ddb77a Implement filesystem_error::what() and improve reporting. by Eric Fiselier · 6 years ago
  99. 70c866b Implement a better copy_file. by Eric Fiselier · 6 years ago
  100. 77c9cf4 Fix two test failures in <experimental/filesystem> by Eric Fiselier · 6 years ago