1. 9bde150 [cxx2a] Fix warning triggered by r343285 by Vitaly Buka · 6 years ago
  2. 16357ee [libc++] Remove Fuchsia-specific knowledge to pick the ABI version by Louis Dionne · 6 years ago
  3. c4b4486 Revert r342936 "Remove redundant null pointer check in operator delete" by Louis Dionne · 6 years ago
  4. 32e3054 Remove redundant null pointer check in operator delete by Fangrui Song · 6 years ago
  5. 2495dab [libcxx] Fix the binder deprecation tests on Clang 5. by Louis Dionne · 6 years ago
  6. 58deb8a [libcxx] Fix buildbots on Debian by Louis Dionne · 6 years ago
  7. e992efe [libcxx] Document new symbols __u64toa and __u32toa on Darwin by Louis Dionne · 6 years ago
  8. 13cf3b9 [libc++] Add deprecated attributes to many deprecated components by Louis Dionne · 6 years ago
  9. 5981b33 [NFC][libcxx] Rename helpers with 4 underscores to something more reasonable by Louis Dionne · 6 years ago
  10. 6adb8a3 [NFC][libc++] Fix typo in the description of LIBCXX_INCLUDE_BENCHMARKS by Louis Dionne · 6 years ago
  11. 7a26d87 Mark [[nodiscard]] tests unsupported on GCC prior to 7.0 by Eric Fiselier · 6 years ago
  12. 33cc965 Fix UB in SIMD tests. by Eric Fiselier · 6 years ago
  13. 8ee872e [libcxx] Readjust nodiscard_extensions.pass.cpp test - just disable for ASAN by Roman Lebedev · 6 years ago
  14. 23b77ec Mark test as flaky by Eric Fiselier · 6 years ago
  15. 3cea452 Correct docs to reference the new libc++ lists. by Eric Fiselier · 6 years ago
  16. 4a5c6f3 [libcxx] Blind attempt to fix harmless leak in nodiscard_extensions.pass.cpp test by Roman Lebedev · 6 years ago
  17. 7c3b27d [libcxx] Fix the definition of the check-cxx-abilist target on Darwin by Louis Dionne · 6 years ago
  18. 5ba8919 Document new symbols for __u64toa and __u32toa by Zhihao Yuan · 6 years ago
  19. caf40ae [libc++] Add _LIBCPP_ENABLE_NODISCARD and _LIBCPP_NODISCARD_EXT to allow pre-C++2a [[nodiscard]] by Roman Lebedev · 6 years ago
  20. 699bfec Similar to the handling of darwin target triples, strip the version by Dimitry Andric · 6 years ago
  21. 6bcb2dc Remove a bunch of empty subdirectories. NFCI. by Dimitry Andric · 6 years ago
  22. 8f4c8e6 fix some typos in the doc by Sylvestre Ledru · 6 years ago
  23. e404320 add a quick link to libc++abi by Sylvestre Ledru · 6 years ago
  24. ac2b570 refresh the libc++ homepage by Sylvestre Ledru · 6 years ago
  25. 087a509 Fix diagnostic regex in variant tests to tolerate older clang versions by Eric Fiselier · 6 years ago
  26. e59d098 Revert "Implement LWG 2221 - No formatted output operator for nullptr." by Volodymyr Sapsai · 6 years ago
  27. f06032b Implement LWG 2221 - No formatted output operator for nullptr. Reviewed as https://reviews.llvm.org/D44263 by Marshall Clow · 6 years ago
  28. 989927c Don't require relops on variant alternatives to all return the same type. by Eric Fiselier · 6 years ago
  29. 699cb5b Remove unused include of "verbose_assert.h" by Marshall Clow · 6 years ago
  30. 35a0c2c Fix typo by Fangrui Song · 6 years ago
  31. 1755c75 Mark LWG#3102 as complete. No code changes, but I updated a test or two by Marshall Clow · 6 years ago
  32. 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
  33. 420ace6 Actually mark LWG#2953, don't just say you've done so in r342070 by Marshall Clow · 6 years ago
  34. c106dd6 mark LWG#2953 as complete. No code changes required, but added a couple of extra tests. by Marshall Clow · 6 years ago
  35. 575d688 Update the failure annotations for the uncaught_exceptions test. The underlying abi library on some Mac OS versions does not support the plural uncaught_exceptions, so libc++ emulates it from the singlar; this means it will only return 0 or 1. by Marshall Clow · 6 years ago
  36. ec25143 Implement LWG #3017. list splice functions should use addressof by Marshall Clow · 6 years ago
  37. bf9b545 Update the synopsis for <version>. NFC by Marshall Clow · 6 years ago
  38. 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
  39. 5a86ba0 ReleaseNotes: update links to use https by Hans Wennborg · 6 years ago
  40. 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
  41. 6969dc1 [libc++] Add a link to the Release notes from the main libc++ documentation by Louis Dionne · 6 years ago
  42. fa8c539 [libcxx] Add ReleaseNotes.rst file for release notes by Louis Dionne · 6 years ago
  43. 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
  44. 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
  45. f45b25b Fix ODR violation: namespace-scope helpers should not be declared 'static'. by Richard Smith · 6 years ago
  46. e45e064 Mark P0556 as 'in progress' by Marshall Clow · 6 years ago
  47. cd04d45 [libc++] Fix handling of negated character classes in regex by Louis Dionne · 6 years ago
  48. 39ad1d1 [libc++] Remove race condition in std::async by Louis Dionne · 6 years ago
  49. b2dd769 Comment out #define __cpp_lib_node_extract, we only support half of that functionality by Erik Pilkington · 6 years ago
  50. ed6c20e Disable the aligned allocation test on old mac versions instead of XFAILing it by Reid Kleckner · 6 years ago
  51. c39fe08 Add diagnostics for min/max algorithms when a InputIterator is used. by Eric Fiselier · 6 years ago
  52. 1e22fa5 Attempt to unbreak filesystem tests on certain linux distros. by Eric Fiselier · 6 years ago
  53. 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
  54. 36711b2 Teach libc++ to use native NetBSD's max_align_t by Kamil Rytarowski · 6 years ago
  55. f017e1e Refactor the newly created <bit> header. Still (almost) NFC. Reviewed as https://reviews.llvm.org/D50876 by Marshall Clow · 6 years ago
  56. 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
  57. 245791a Revert "Establish the <bit> header. NFC yet. Reviewed as https://reviews.llvm.org/D50815" by Vitaly Buka · 6 years ago
  58. aec9e0e [libc++] Use correct rand.eng.mers all-zeroes seed sequence fallback by Hubert Tong · 6 years ago
  59. fbd4673 Establish the <bit> header. NFC yet. Reviewed as https://reviews.llvm.org/D50815 by Marshall Clow · 6 years ago
  60. 61b0a00 [libcxx] By default, do not use internal_linkage to hide symbols from the ABI by Louis Dionne · 6 years ago
  61. 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
  62. a87d980 Mark the at_exit and at_quick_exit tests as unsupported under C++98 an 03, since those calls were introduced in C++11. They're already guarded by an ifdef in the code, so this is a 'belt-and-suspenders' change. by Marshall Clow · 6 years ago
  63. 6217600 libcxx: Mark __temp_value::__temp_value as _LIBCPP_NO_CFI. by Peter Collingbourne · 6 years ago
  64. f27313a For FreeBSD, don't define _M in nasty_macros.hpp by Dimitry Andric · 6 years ago
  65. a1b4766 [libcxx] Fix XFAILs for aligned allocation tests on older OSX versions by Louis Dionne · 6 years ago
  66. 010c53f [libc++] Disable failing C11 feature tests for <cfloat> and <float.h> by Louis Dionne · 6 years ago
  67. 51a2f0c [libc++] Detect C11 features on non-Clang compilers by Louis Dionne · 6 years ago
  68. cbc40b6 [libc++] Fix incorrect definition of TEST_HAS_C11_FEATURES by Louis Dionne · 6 years ago
  69. 8ddc6c6 [CMake] Fix the LIBCXX_STATICALLY_LINK_ABI_IN_SHARED_LIBRARY option by Martin Storsjo · 6 years ago
  70. 4d52143 [libc++] Add missing #include in C11 features tests by Louis Dionne · 6 years ago
  71. 6699cd3 [libcxx] Mark charconv tests as failing for previous libcxx versions. by Volodymyr Sapsai · 6 years ago
  72. 836b7e9 [libc++] Enable aligned allocation based on feature test macro, irrespective of standard by Louis Dionne · 6 years ago
  73. 5428c6b [libcxx] [test] Avoid -Wunused-local-typedef in node_handle.pass.cpp. by Billy Robert O'Neal III · 6 years ago
  74. d39a48c [libcxx] [test] Allow a standard library that implements LWG 1203 in istream.rvalue/rvalue.pass.cpp by Billy Robert O'Neal III · 6 years ago
  75. 76dae9f [libcxx] [test] Remove nonportable locale assumption in basic.ios.members/narrow.pass.cpp by Billy Robert O'Neal III · 6 years ago
  76. d963dbf [libcxx] [test] Remove asserts that <cstddef> and <stdexcept> are included by <bitset> by Billy Robert O'Neal III · 6 years ago
  77. 8989fab [libcxx] [test] Add missing <stdexcept> in several tests. by Billy Robert O'Neal III · 6 years ago
  78. 5ae92f0 [libc++] Add the _LIBCPP_HIDE_FROM_ABI_AFTER_V1 macro by Louis Dionne · 6 years ago
  79. de13480 Mark LWG#2260 as complete. We already did the right thing, so I just added tests to ensure that we continue to DTRT. by Marshall Clow · 6 years ago
  80. 2580fdb [NFC][libc++] Consistently use spaces to indent by Louis Dionne · 6 years ago
  81. e25adff Make my new test harness work w/c++03 by Marshall Clow · 6 years ago
  82. 3a225ef Update the changes to the array tests (that I committed yesterday) to use the test_comparison routines that I committed last week. NFC. by Marshall Clow · 6 years ago
  83. 88f5d7a Implement P1023: constexpr comparison operators for std::array by Marshall Clow · 6 years ago
  84. 48282b6 Implement P0887: The identity metafunction by Marshall Clow · 6 years ago
  85. db9b3d8 Update version to 8.0.0svn: cmake, includes files and docs by Hans Wennborg · 6 years ago
  86. f7410f4 [libc++] Fix GCC 7.2.0 macro redefinition warning by Louis Dionne · 6 years ago
  87. 80f0ca0 [libc++] Fix build failures after merging <charconv> by Zhihao Yuan · 6 years ago
  88. dc38e97 [libc++][C++17] Elementary string conversions for integral types by Zhihao Yuan · 6 years ago
  89. 6952d14 [libc++] Remove _LIBCPP_BUILDING_XXX macros, which are redundant since _LIBCPP_BUILDING_LIBRARY by Louis Dionne · 6 years ago
  90. 36fc737 First half of C++17's splicing maps and sets by Erik Pilkington · 6 years ago
  91. ea96e3a Final bit of P0063 - make sure that aligned_alloc is available when the underlying C library supports it by Marshall Clow · 6 years ago
  92. 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
  93. 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
  94. 1bef51a Introduce a new test macro TEST_HAS_C11_FEATURES which is set when the underlying C library has C11 features. In C++17, we use those features. <__config> defines a similar macro, _LIBCPP_HAS_C11_FEATURES, but we don't want to use that in the library-independent parts of the tests, so define the new one. Also add a libc++-specific test to make sure the two stay in sync. by Marshall Clow · 6 years ago
  95. decf28e Code cleanup - change naked 'throw' expressions to call helpre function '__throw_future_error'. The behavior change is that if you build libc++ with exceptions disabled, and then use that in a program that sets the value of the future twice (for example), it will now abort instead of behaving unpredictably. by Marshall Clow · 6 years ago
  96. 379cbeb [libcxx] fix `>> 42` UB in <experimental/simd> by Tim Shen · 6 years ago
  97. 154f393 Re-apply "[libcxx] implement <simd> ABI for Clang/GCC vector extension, constructors, copy_from and copy_to." by Tim Shen · 6 years ago
  98. b6244cf Revert "[libcxx] implement <simd> ABI for Clang/GCC vector extension, constructors, copy_from and copy_to." by Tim Shen · 6 years ago
  99. 3732995 [libcxx] implement <simd> ABI for Clang/GCC vector extension, constructors, copy_from and copy_to. by Tim Shen · 6 years ago
  100. 8634f6f [libc++] Exclude posix_l/strtonum fallback inclusion for newlib > 2.4 by Jordan Rupprecht · 6 years ago