1. 8f4c8e6 fix some typos in the doc by Sylvestre Ledru · 6 years ago
  2. e404320 add a quick link to libc++abi by Sylvestre Ledru · 6 years ago
  3. ac2b570 refresh the libc++ homepage by Sylvestre Ledru · 6 years ago
  4. 087a509 Fix diagnostic regex in variant tests to tolerate older clang versions by Eric Fiselier · 6 years ago
  5. e59d098 Revert "Implement LWG 2221 - No formatted output operator for nullptr." by Volodymyr Sapsai · 6 years ago
  6. f06032b Implement LWG 2221 - No formatted output operator for nullptr. Reviewed as https://reviews.llvm.org/D44263 by Marshall Clow · 6 years ago
  7. 989927c Don't require relops on variant alternatives to all return the same type. by Eric Fiselier · 6 years ago
  8. 699cb5b Remove unused include of "verbose_assert.h" by Marshall Clow · 6 years ago
  9. 35a0c2c Fix typo by Fangrui Song · 6 years ago
  10. 1755c75 Mark LWG#3102 as complete. No code changes, but I updated a test or two by Marshall Clow · 6 years ago
  11. 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
  12. 420ace6 Actually mark LWG#2953, don't just say you've done so in r342070 by Marshall Clow · 6 years ago
  13. c106dd6 mark LWG#2953 as complete. No code changes required, but added a couple of extra tests. by Marshall Clow · 6 years ago
  14. 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
  15. ec25143 Implement LWG #3017. list splice functions should use addressof by Marshall Clow · 6 years ago
  16. bf9b545 Update the synopsis for <version>. NFC by Marshall Clow · 6 years ago
  17. 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
  18. 5a86ba0 ReleaseNotes: update links to use https by Hans Wennborg · 6 years ago
  19. 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
  20. 6969dc1 [libc++] Add a link to the Release notes from the main libc++ documentation by Louis Dionne · 6 years ago
  21. fa8c539 [libcxx] Add ReleaseNotes.rst file for release notes by Louis Dionne · 6 years ago
  22. 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
  23. 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
  24. f45b25b Fix ODR violation: namespace-scope helpers should not be declared 'static'. by Richard Smith · 6 years ago
  25. e45e064 Mark P0556 as 'in progress' by Marshall Clow · 6 years ago
  26. cd04d45 [libc++] Fix handling of negated character classes in regex by Louis Dionne · 6 years ago
  27. 39ad1d1 [libc++] Remove race condition in std::async by Louis Dionne · 6 years ago
  28. b2dd769 Comment out #define __cpp_lib_node_extract, we only support half of that functionality by Erik Pilkington · 6 years ago
  29. ed6c20e Disable the aligned allocation test on old mac versions instead of XFAILing it by Reid Kleckner · 6 years ago
  30. c39fe08 Add diagnostics for min/max algorithms when a InputIterator is used. by Eric Fiselier · 6 years ago
  31. 1e22fa5 Attempt to unbreak filesystem tests on certain linux distros. by Eric Fiselier · 6 years ago
  32. 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
  33. 36711b2 Teach libc++ to use native NetBSD's max_align_t by Kamil Rytarowski · 6 years ago
  34. f017e1e Refactor the newly created <bit> header. Still (almost) NFC. Reviewed as https://reviews.llvm.org/D50876 by Marshall Clow · 6 years ago
  35. 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
  36. 245791a Revert "Establish the <bit> header. NFC yet. Reviewed as https://reviews.llvm.org/D50815" by Vitaly Buka · 6 years ago
  37. aec9e0e [libc++] Use correct rand.eng.mers all-zeroes seed sequence fallback by Hubert Tong · 6 years ago
  38. fbd4673 Establish the <bit> header. NFC yet. Reviewed as https://reviews.llvm.org/D50815 by Marshall Clow · 6 years ago
  39. 61b0a00 [libcxx] By default, do not use internal_linkage to hide symbols from the ABI by Louis Dionne · 6 years ago
  40. 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
  41. 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
  42. 6217600 libcxx: Mark __temp_value::__temp_value as _LIBCPP_NO_CFI. by Peter Collingbourne · 6 years ago
  43. f27313a For FreeBSD, don't define _M in nasty_macros.hpp by Dimitry Andric · 6 years ago
  44. a1b4766 [libcxx] Fix XFAILs for aligned allocation tests on older OSX versions by Louis Dionne · 6 years ago
  45. 010c53f [libc++] Disable failing C11 feature tests for <cfloat> and <float.h> by Louis Dionne · 6 years ago
  46. 51a2f0c [libc++] Detect C11 features on non-Clang compilers by Louis Dionne · 6 years ago
  47. cbc40b6 [libc++] Fix incorrect definition of TEST_HAS_C11_FEATURES by Louis Dionne · 6 years ago
  48. 8ddc6c6 [CMake] Fix the LIBCXX_STATICALLY_LINK_ABI_IN_SHARED_LIBRARY option by Martin Storsjo · 6 years ago
  49. 4d52143 [libc++] Add missing #include in C11 features tests by Louis Dionne · 6 years ago
  50. 6699cd3 [libcxx] Mark charconv tests as failing for previous libcxx versions. by Volodymyr Sapsai · 6 years ago
  51. 836b7e9 [libc++] Enable aligned allocation based on feature test macro, irrespective of standard by Louis Dionne · 6 years ago
  52. 5428c6b [libcxx] [test] Avoid -Wunused-local-typedef in node_handle.pass.cpp. by Billy Robert O'Neal III · 6 years ago
  53. 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
  54. 76dae9f [libcxx] [test] Remove nonportable locale assumption in basic.ios.members/narrow.pass.cpp by Billy Robert O'Neal III · 6 years ago
  55. d963dbf [libcxx] [test] Remove asserts that <cstddef> and <stdexcept> are included by <bitset> by Billy Robert O'Neal III · 6 years ago
  56. 8989fab [libcxx] [test] Add missing <stdexcept> in several tests. by Billy Robert O'Neal III · 6 years ago
  57. 5ae92f0 [libc++] Add the _LIBCPP_HIDE_FROM_ABI_AFTER_V1 macro by Louis Dionne · 6 years ago
  58. 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
  59. 2580fdb [NFC][libc++] Consistently use spaces to indent by Louis Dionne · 6 years ago
  60. e25adff Make my new test harness work w/c++03 by Marshall Clow · 6 years ago
  61. 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
  62. 88f5d7a Implement P1023: constexpr comparison operators for std::array by Marshall Clow · 6 years ago
  63. 48282b6 Implement P0887: The identity metafunction by Marshall Clow · 6 years ago
  64. db9b3d8 Update version to 8.0.0svn: cmake, includes files and docs by Hans Wennborg · 6 years ago
  65. f7410f4 [libc++] Fix GCC 7.2.0 macro redefinition warning by Louis Dionne · 6 years ago
  66. 80f0ca0 [libc++] Fix build failures after merging <charconv> by Zhihao Yuan · 6 years ago
  67. dc38e97 [libc++][C++17] Elementary string conversions for integral types by Zhihao Yuan · 6 years ago
  68. 6952d14 [libc++] Remove _LIBCPP_BUILDING_XXX macros, which are redundant since _LIBCPP_BUILDING_LIBRARY by Louis Dionne · 6 years ago
  69. 36fc737 First half of C++17's splicing maps and sets by Erik Pilkington · 6 years ago
  70. 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
  71. 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
  72. 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
  73. 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
  74. 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
  75. 379cbeb [libcxx] fix `>> 42` UB in <experimental/simd> by Tim Shen · 6 years ago
  76. 154f393 Re-apply "[libcxx] implement <simd> ABI for Clang/GCC vector extension, constructors, copy_from and copy_to." by Tim Shen · 6 years ago
  77. b6244cf Revert "[libcxx] implement <simd> ABI for Clang/GCC vector extension, constructors, copy_from and copy_to." by Tim Shen · 6 years ago
  78. 3732995 [libcxx] implement <simd> ABI for Clang/GCC vector extension, constructors, copy_from and copy_to. by Tim Shen · 6 years ago
  79. 8634f6f [libc++] Exclude posix_l/strtonum fallback inclusion for newlib > 2.4 by Jordan Rupprecht · 6 years ago
  80. 67fff22 [libc++] Introduce _LIBCPP_HIDE_FROM_ABI to replace _LIBCPP_INLINE_VISIBILITY by Louis Dionne · 6 years ago
  81. 7e850a8 Move Filesystem namespace definition out of a clang specific ifdef block. by Eric Fiselier · 6 years ago
  82. bc3f403 Add libc++fs to the test deps, and not to the target 'cxx'. by Eric Fiselier · 6 years ago
  83. 0be5527 Attempt to unbreak *all the bots* by Eric Fiselier · 6 years ago
  84. 789c372 Correctly mark the Filesystem status as complete. by Eric Fiselier · 6 years ago
  85. a0866c5 Implement <filesystem> by Eric Fiselier · 6 years ago
  86. 47d2a98 [CMake] Don't generate linker script only when shared library isn't statically linked by Petr Hosek · 6 years ago
  87. 14535e3 Copy LLVM CMake configuration for CMake Policy CMP0068 by Eric Fiselier · 6 years ago
  88. 8928a12 Be more consistent about which bool value means an error occurred by Eric Fiselier · 6 years ago
  89. d1759cf Cleanup the last_write_time internals by Eric Fiselier · 6 years ago
  90. cff3d7b Correct comment about stat truncating st_mtimespec to seconds by Eric Fiselier · 6 years ago
  91. 94d2ed5 Fix attribute placement WRT extern C by Eric Fiselier · 6 years ago
  92. 6655abb Workaround OS X 10.11 behavior where stat truncates st_mtimespec to seconds. by Eric Fiselier · 6 years ago
  93. 8940394 Add print statements to help debugging by Eric Fiselier · 6 years ago
  94. 6b101f1 [libc++] Add hack to allow ubsan to work w/o compiler-rt (__muloti4 is undefined) by Eric Fiselier · 6 years ago
  95. 104b331 [libc++] Follow-up to r337968: use an explicit cast as suggested by Eric by Alex Lorenz · 6 years ago
  96. 162ce3f [CMake] Don't install c++abi headers in standalone libc++ build by Petr Hosek · 6 years ago
  97. 98e5322 Work around GCC bug in constexpr function by Eric Fiselier · 6 years ago
  98. 39ee0c6 Fix GCC build in C++14 w/o c++14 constexpr by Eric Fiselier · 6 years ago
  99. 0c29afa Remove test which shouldn't have been committed by Eric Fiselier · 6 years ago
  100. d2992ce Fix failing test under C++14 by Eric Fiselier · 6 years ago