1. 1f63d28 Update commnents to reflect the changes for LWG#3127. NFC by Marshall Clow · 6 years ago
  2. 3d1d923 Update commnents to reflect the changes for LWG#3122. NFC by Marshall Clow · 6 years ago
  3. d74c17e [libcxx] Avoid repeating the definition of std:: namespaces by Louis Dionne · 6 years ago
  4. 3845a65 [libcxx] Remove _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY by Louis Dionne · 6 years ago
  5. 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
  6. 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
  7. 7f20dc6 Revert r344529 "Implement the first part of the calendar support for C++20" by Artem Dergachev · 6 years ago
  8. 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
  9. 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
  10. b233fda Revert commit r344254; does not work with C++03 by Marshall Clow · 6 years ago
  11. 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
  12. f9c56da Fix use of removed _LIBCPP_HAS_NO_BUILTIN_ALIGNED_OPERATOR_NEW_DELETE by Eric Fiselier · 6 years ago
  13. 657a130 Distinguish between library and language support for aligned allocation. by Eric Fiselier · 6 years ago
  14. f7d5bd2 Annotate scoped_lock as with scoped_lockable attribute by Aaron Puchert · 6 years ago
  15. 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
  16. 0722603 [libc++][NFC] Add error messages to a couple of static_asserts in span by Louis Dionne · 6 years ago
  17. d545268 Attempt to fix aligned allocation configuration under clang-cl by Eric Fiselier · 6 years ago
  18. 1ef0f10 Fix Shadowing warning on Windows by Eric Fiselier · 6 years ago
  19. f7fac08 Fix even more Clang warnings. by Eric Fiselier · 6 years ago
  20. 16357ee [libc++] Remove Fuchsia-specific knowledge to pick the ABI version by Louis Dionne · 6 years ago
  21. 13cf3b9 [libc++] Add deprecated attributes to many deprecated components by Louis Dionne · 6 years ago
  22. 5981b33 [NFC][libcxx] Rename helpers with 4 underscores to something more reasonable by Louis Dionne · 6 years ago
  23. caf40ae [libc++] Add _LIBCPP_ENABLE_NODISCARD and _LIBCPP_NODISCARD_EXT to allow pre-C++2a [[nodiscard]] by Roman Lebedev · 6 years ago
  24. e59d098 Revert "Implement LWG 2221 - No formatted output operator for nullptr." by Volodymyr Sapsai · 6 years ago
  25. f06032b Implement LWG 2221 - No formatted output operator for nullptr. Reviewed as https://reviews.llvm.org/D44263 by Marshall Clow · 6 years ago
  26. 989927c Don't require relops on variant alternatives to all return the same type. by Eric Fiselier · 6 years ago
  27. 35a0c2c Fix typo by Fangrui Song · 6 years ago
  28. 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
  29. ec25143 Implement LWG #3017. list splice functions should use addressof by Marshall Clow · 6 years ago
  30. bf9b545 Update the synopsis for <version>. NFC by Marshall Clow · 6 years ago
  31. 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
  32. 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
  33. 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
  34. 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
  35. f45b25b Fix ODR violation: namespace-scope helpers should not be declared 'static'. by Richard Smith · 6 years ago
  36. cd04d45 [libc++] Fix handling of negated character classes in regex by Louis Dionne · 6 years ago
  37. 39ad1d1 [libc++] Remove race condition in std::async by Louis Dionne · 6 years ago
  38. b2dd769 Comment out #define __cpp_lib_node_extract, we only support half of that functionality by Erik Pilkington · 6 years ago
  39. c39fe08 Add diagnostics for min/max algorithms when a InputIterator is used. by Eric Fiselier · 6 years ago
  40. 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
  41. 36711b2 Teach libc++ to use native NetBSD's max_align_t by Kamil Rytarowski · 6 years ago
  42. f017e1e Refactor the newly created <bit> header. Still (almost) NFC. Reviewed as https://reviews.llvm.org/D50876 by Marshall Clow · 6 years ago
  43. 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
  44. 245791a Revert "Establish the <bit> header. NFC yet. Reviewed as https://reviews.llvm.org/D50815" by Vitaly Buka · 6 years ago
  45. aec9e0e [libc++] Use correct rand.eng.mers all-zeroes seed sequence fallback by Hubert Tong · 6 years ago
  46. fbd4673 Establish the <bit> header. NFC yet. Reviewed as https://reviews.llvm.org/D50815 by Marshall Clow · 6 years ago
  47. 61b0a00 [libcxx] By default, do not use internal_linkage to hide symbols from the ABI by Louis Dionne · 6 years ago
  48. 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
  49. 6217600 libcxx: Mark __temp_value::__temp_value as _LIBCPP_NO_CFI. by Peter Collingbourne · 6 years ago
  50. 51a2f0c [libc++] Detect C11 features on non-Clang compilers by Louis Dionne · 6 years ago
  51. 836b7e9 [libc++] Enable aligned allocation based on feature test macro, irrespective of standard by Louis Dionne · 6 years ago
  52. 5ae92f0 [libc++] Add the _LIBCPP_HIDE_FROM_ABI_AFTER_V1 macro by Louis Dionne · 6 years ago
  53. 2580fdb [NFC][libc++] Consistently use spaces to indent by Louis Dionne · 6 years ago
  54. 88f5d7a Implement P1023: constexpr comparison operators for std::array by Marshall Clow · 6 years ago
  55. 48282b6 Implement P0887: The identity metafunction by Marshall Clow · 6 years ago
  56. db9b3d8 Update version to 8.0.0svn: cmake, includes files and docs by Hans Wennborg · 6 years ago
  57. f7410f4 [libc++] Fix GCC 7.2.0 macro redefinition warning by Louis Dionne · 6 years ago
  58. dc38e97 [libc++][C++17] Elementary string conversions for integral types by Zhihao Yuan · 6 years ago
  59. 6952d14 [libc++] Remove _LIBCPP_BUILDING_XXX macros, which are redundant since _LIBCPP_BUILDING_LIBRARY by Louis Dionne · 6 years ago
  60. 36fc737 First half of C++17's splicing maps and sets by Erik Pilkington · 6 years ago
  61. 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
  62. 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
  63. 154f393 Re-apply "[libcxx] implement <simd> ABI for Clang/GCC vector extension, constructors, copy_from and copy_to." by Tim Shen · 6 years ago
  64. b6244cf Revert "[libcxx] implement <simd> ABI for Clang/GCC vector extension, constructors, copy_from and copy_to." by Tim Shen · 6 years ago
  65. 3732995 [libcxx] implement <simd> ABI for Clang/GCC vector extension, constructors, copy_from and copy_to. by Tim Shen · 6 years ago
  66. 8634f6f [libc++] Exclude posix_l/strtonum fallback inclusion for newlib > 2.4 by Jordan Rupprecht · 6 years ago
  67. 67fff22 [libc++] Introduce _LIBCPP_HIDE_FROM_ABI to replace _LIBCPP_INLINE_VISIBILITY by Louis Dionne · 6 years ago
  68. 7e850a8 Move Filesystem namespace definition out of a clang specific ifdef block. by Eric Fiselier · 6 years ago
  69. 0be5527 Attempt to unbreak *all the bots* by Eric Fiselier · 6 years ago
  70. a0866c5 Implement <filesystem> by Eric Fiselier · 6 years ago
  71. 162ce3f [CMake] Don't install c++abi headers in standalone libc++ build by Petr Hosek · 6 years ago
  72. 81872e9 [libc++] Use __int128_t to represent file_time_type. by Eric Fiselier · 6 years ago
  73. a1ae56c [libc++] Factor duplicate code into function templates by Louis Dionne · 6 years ago
  74. 2493db4 Make <experimental/filesystem> explicitly require C++11. by Eric Fiselier · 6 years ago
  75. 0fbaa11 Ensure path::iterator and PathParser share the same enumeration values. by Eric Fiselier · 6 years ago
  76. 2be41bb Stop wrapping __has_include in another macro by Alexander Richardson · 6 years ago
  77. ad7e935 Fix use of incorrect _LIBCXX macro (should be _LIBCPP). by Eric Fiselier · 6 years ago
  78. 39bc5e7 fix nesting of namespace and standard-version check. Also include <__config> by Marshall Clow · 6 years ago
  79. fbd3e84 Implement <span>. Reviewed as https://reviews.llvm.org/D49338 by Marshall Clow · 6 years ago
  80. 2c11635 Recommit "Use possibly cached directory entry values when performing recursive directory iteration." by Eric Fiselier · 6 years ago
  81. 0ddb77a Implement filesystem_error::what() and improve reporting. by Eric Fiselier · 6 years ago
  82. 70c866b Implement a better copy_file. by Eric Fiselier · 6 years ago
  83. 77c9cf4 Fix two test failures in <experimental/filesystem> by Eric Fiselier · 6 years ago
  84. 0f8ee94 Use _LIBCPP_UNREACHABLE to convince GCC that non-void functions actually always return by Eric Fiselier · 6 years ago
  85. e274f43 [libc++] Implement Directory Entry Caching -- Sort of. by Eric Fiselier · 6 years ago
  86. f1f54dc Update the synopsis for <chrono> for C++20. No functional change. by Marshall Clow · 6 years ago
  87. ffbb91b Address "always inline function is not always inlinable" warning with GCC. by Eric Fiselier · 6 years ago
  88. a40a6b3 [CMake] Use correct variable as header install prefix by Petr Hosek · 6 years ago
  89. 0d0b972 Mark __equal_to 's operations as constexpr. by Marshall Clow · 6 years ago
  90. d7d3d8b Mark one more __wrap_iter operation as constexpr. by Marshall Clow · 6 years ago
  91. 1548d77 wrap _LIBCPP_HAS_NO_CXX14_CONSTEXPR in defined(...) by Marshall Clow · 6 years ago
  92. e585baf Shot in the dark to fix gcc 4.9 / c++11 build by Marshall Clow · 6 years ago
  93. c005c7e Make internal class __wrap_iter constexpr when not using libc++'s debugging mode. Introduce a new macro _LIBCPP_CONSTEXPR_IF_NODEBUG to mark this. by Marshall Clow · 6 years ago
  94. 5423805 [libc++] Take 2: Replace uses of _LIBCPP_ALWAYS_INLINE by _LIBCPP_INLINE_VISIBILITY by Louis Dionne · 6 years ago
  95. bb71654 [libc++] Declare noop_coroutine() with _LIBCPP_INLINE_VISIBILITY by Louis Dionne · 6 years ago
  96. 4a5f61a [libc++] Declare <compare> operators with the proper visibility attribute by Louis Dionne · 6 years ago
  97. 57288eb type_traits: aligned_union is NOT the same as __uncvref [NFC] by Casey Carter · 6 years ago
  98. 4e7ffca Revert "[libc++] Replace uses of _LIBCPP_ALWAYS_INLINE by _LIBCPP_INLINE_VISIBILITY" by Louis Dionne · 6 years ago
  99. 79aa4f3 [libc++] Replace uses of _LIBCPP_ALWAYS_INLINE by _LIBCPP_INLINE_VISIBILITY by Louis Dionne · 6 years ago
  100. 50e0c14 [NFC] Add <initializer_list> to the synopsis of <utility> by Louis Dionne · 6 years ago