1. a831287 Fix PR22634 - std::allocator doesn't respect over-aligned types. by Eric Fiselier · 6 years ago
  2. 256f187 Implement LWG3034: P0767R1 breaks previously-standard-layout types by Marshall Clow · 6 years ago
  3. dfeb9b2 Implement LWG3035: std::allocator's constructors should be constexpr. by Marshall Clow · 6 years ago
  4. 483bc7c Implement LWG 3039 and 3041 - 'Treating Unnecessary decay'. by Marshall Clow · 6 years ago
  5. 6ce040b Updated C++2a status with changes from Jacksonville WG21 meeting by Marshall Clow · 6 years ago
  6. ddb6e5f [libcxx][test] Adding apple-clang-9 to UNSUPPORTED in iter_alloc_deduction.fail.cpp. by Mike Edwards · 6 years ago
  7. 698b695 [CMake] Copy the generated __config header into build directory by Petr Hosek · 6 years ago
  8. 7c796ff [libcxx][test] Reverting r327178 and r327190. by Mike Edwards · 6 years ago
  9. 00c27d8 [libcxx][test] Marking libcpp-no-deduction-guides unsupported. by Mike Edwards · 6 years ago
  10. 057ac7c XFAIL: libcpp-no-deduction-guides in libcxx/test/std/strings/basic.string/string.cons/iter_alloc_deduction.fail.cpp by Mike Edwards · 6 years ago
  11. 2b588cb Low-hanging fruit optimization in string::__move_assign(). by Vedant Kumar · 6 years ago
  12. 46b8a51 Implement LWG#2518 - Non-member swap for propagate_const should call member swap by Marshall Clow · 6 years ago
  13. 66c652f Include <system_error> since we use it. Thanks to Andrey Maksimov for the catch. by Marshall Clow · 6 years ago
  14. c806975 One more test for P0767: by Marshall Clow · 6 years ago
  15. 06ac7cd Implement P0767R1 - Deprecate POD by Marshall Clow · 6 years ago
  16. f31b30d Added P0805 to the list of ready bits by Marshall Clow · 6 years ago
  17. 04dd960 [libcxx] Fix last_write_time test for filesystems that don't support very small times. by Volodymyr Sapsai · 6 years ago
  18. 76c2464 [libcxx] [test] Fix MSVC warnings and errors. by Stephan T. Lavavej · 6 years ago
  19. 7102892 Cleanup __config indention NFC by Logan Chien · 6 years ago
  20. 9880456 Allow passing additional compiler/linker flags for the tests by Alexander Richardson · 6 years ago
  21. df7a35c [libcxx] Do not include the C math.h header before __config by Mikhail Maltsev · 6 years ago
  22. 2c89311 Add another test case to the deduction guide for basic_string. by Marshall Clow · 6 years ago
  23. 61494b5 libcxx: Unbreak external thread library configuration. by Peter Collingbourne · 6 years ago
  24. c4658ab [libcxx] Improve accuracy of complex asinh and acosh by Mikhail Maltsev · 6 years ago
  25. 6878e85 Fix test failure on compilers w/o deduction guides by Eric Fiselier · 6 years ago
  26. 078dd97 Add a catch for std::length_error for the case where the string can't handle 2GB. (like say 32-bit big-endian) by Marshall Clow · 6 years ago
  27. 26a0274 Fix incorrect indentation. by Bruce Mitchener · 6 years ago
  28. e64dcb6 Make the ctype_byname::widen test cases pass on FreeBSD. by Dimitry Andric · 6 years ago
  29. 5247482 Put type attributes after class keyword by Dimitry Andric · 6 years ago
  30. e89a34f Fix typos. by Bruce Mitchener · 6 years ago
  31. a2b7665 [libcxx] [test] Strip trailing whitespace, NFC. by Stephan T. Lavavej · 6 years ago
  32. 806a6ec Implement LWG 2835 - fix <tgmath.h> by Marshall Clow · 6 years ago
  33. f72f219 Implement LWG#2908 - The less-than operator for shared pointers could do more, and mark 2878 as complete as well (we already do that) by Marshall Clow · 6 years ago
  34. b8cb776 While implementing P0777 - preventing unnecessary decay, I found some non-public uses of decay that could be replaced by __uncvref. NFC intented by Marshall Clow · 6 years ago
  35. 524afae Add default C++ ABI libname and include paths for FreeBSD by Dimitry Andric · 6 years ago
  36. 22a291c Fix libcxx MSVC C++17 redefinition of 'align_val_t' by Eric Fiselier · 6 years ago
  37. 0fc3d12 Mark two issues as complete by Eric Fiselier · 6 years ago
  38. a8de063 Fix a typo in the synopsis comment. NFC. Thanks to K-ballo for the catch by Marshall Clow · 6 years ago
  39. 9e6ac07 Use multi-key tree search for {map, set}::{count, equal_range} by Eric Fiselier · 6 years ago
  40. 5bfbd7d The apple versions of clang don't support deduction guides yet. by Marshall Clow · 6 years ago
  41. 88ba975 Once more, with feeling. Spell 'clang-4.0' correctly this time by Marshall Clow · 6 years ago
  42. 0eec3e8 Clean up string's deduction guides tests. Mark old versions of clang as unsupported, b/c they don't have deduction guides, even in C++17 mode by Marshall Clow · 6 years ago
  43. 1a2caf5 Update the status of removed components by Marshall Clow · 6 years ago
  44. 171ed21 [libcxx] Avoid spurious construction of valarray elements by Mikhail Maltsev · 6 years ago
  45. 4c15300 Temporarily comment out deduction guide tests while I figure out what to do with old bots by Marshall Clow · 6 years ago
  46. 5b1e87e Implement deduction guide for basic_string as described in P0433 by Marshall Clow · 6 years ago
  47. 60020e6 Improve a test. NFC by Marshall Clow · 6 years ago
  48. c0acd34 Fix size and alignment of array<T, 0>. by Eric Fiselier · 6 years ago
  49. 73660f7 Stop using __strtonum_fallback on Android. by Dan Albert · 6 years ago
  50. 088e601 Fix PR#31454 - 'basic_string<T>::push_back() crashes if sizeof(T)>sizeof(long long)'. We were mishandling the small-string optimization calculations for very large 'characters'. This may be an ABI change (change the size of) strings of very large 'characters', but since they never worked, I'm not too concerned. by Marshall Clow · 6 years ago
  51. 2e1fa09 Fix -verify static assert messages for older Clang versions by Eric Fiselier · 6 years ago
  52. 6cb35ed [libc++] Fix PR35491 - std::array of zero-size doesn't work with non-default constructible types. by Eric Fiselier · 6 years ago
  53. f003d63 Comment on 'Review' issues by Marshall Clow · 6 years ago
  54. 31810d9 Remove more of the std::experimental bits that are now in std::. All the _v type aliases, conjunction/disjunction, apply, etc. See https://libcxx.llvm.org/TS_deprecation.html by Marshall Clow · 6 years ago
  55. c387931 Mark P0777 as complete by Marshall Clow · 6 years ago
  56. 52f9ca2 Implement P0777: Treating unnecessay decay by Marshall Clow · 6 years ago
  57. 68b20ca Fix building libc++ with the macOS 10.13 SDK with -mmacosx-version-min=10.12 or lower. by Nico Weber · 6 years ago
  58. f477af5 Fix misleading indentation; replace a couple of NULLs with nullptr. Resolves https://reviews.llvm.org/D42945 ; thanks to Bruce Mitchener for the patch. by Marshall Clow · 6 years ago
  59. 46c8ec5 No, really this time mark 3034 as 'Patch Ready' by Marshall Clow · 6 years ago
  60. 4d839cb Mark issue 3034 as 'Patch Ready' by Marshall Clow · 6 years ago
  61. 610fc678 Revert "[libc++] Fix PR35491 - std::array of zero-size doesn't work with non-default constructible types." by Nirav Dave · 6 years ago
  62. 6c83c7f More patches ready by Marshall Clow · 6 years ago
  63. 53095c7 Add issues in 'Review' by Marshall Clow · 6 years ago
  64. b50d244 Remove <experimental/string_view>; use <string_view> instead. See https://libcxx.llvm.org/TS_deprecation.html by Marshall Clow · 6 years ago
  65. 1317717 Fix initialization of array<const T, 0> with GCC. by Eric Fiselier · 6 years ago
  66. 88232b1 Mark LWG 3014 as complete. No code changes needed by Eric Fiselier · 6 years ago
  67. 4d0f428 Implement LWG 3014 - Fix more noexcept issues in filesystem. by Eric Fiselier · 6 years ago
  68. b2c07b0 Mark LWG 3013 as already complete. See r316941 by Eric Fiselier · 6 years ago
  69. 9611902 Remove debug println from rec.dir.itr.increment test by Eric Fiselier · 6 years ago
  70. 0b47a65 Implement LWG2989: path's streaming operators allow everything under the sun. by Eric Fiselier · 6 years ago
  71. cc7688a Mark issue 2851 as complete by Eric Fiselier · 6 years ago
  72. af1fd7c Address LWG 2849 and fix missing failure condition in copy_file. by Eric Fiselier · 6 years ago
  73. 7d251c5 correct comment about C++03 assignment operators by Eric Fiselier · 6 years ago
  74. 122c064 Make array<const T, 0> non-CopyAssignable and make swap and fill ill-formed. by Eric Fiselier · 6 years ago
  75. f3224ac [libc++] Fix PR35491 - std::array of zero-size doesn't work with non-default constructible types. by Eric Fiselier · 6 years ago
  76. b173b26 Work around GCC constexpr initialization bug by Eric Fiselier · 6 years ago
  77. b232793 Work around Clang bug introduced in r324062 by Eric Fiselier · 6 years ago
  78. d33aaa9 Fix has_unique_object_representation after Clang commit r324134. by Eric Fiselier · 6 years ago
  79. b2189c0 Disable test in C++<11 mode due to use of alignas. by Richard Smith · 6 years ago
  80. dfb1351 Make std::get_temporary_buffer respect overaligned types when possible by Richard Smith · 6 years ago
  81. fd34566 Put the exception classes for experimental::optional and experimental::any back in the dylib for binary compatibility by Marshall Clow · 6 years ago
  82. b21316f Remove std::experimental::sample; use std::sample instead. See https://libcxx.llvm.org/TS_deprecation.html by Marshall Clow · 6 years ago
  83. 14698bc Remove <experimental/numeric>; use <numeric> instead. See https://libcxx.llvm.org/TS_deprecation.html by Marshall Clow · 6 years ago
  84. f8d223f Remove <experimental/any>; use <any> instead. See https://libcxx.llvm.org/TS_deprecation.html by Marshall Clow · 6 years ago
  85. 95db3d2 Remove <experimental/optional>; use <optional> instead. See https://libcxx.llvm.org/TS_deprecation.html by Marshall Clow · 6 years ago
  86. 75075c6 Add static_asserts to basic_ios and basic_stream_buf to ensure that that the traits match the character type. This is a requirement on the user - now we get consistent failures at compile time instead of incomprehensible error messages or runtime failures. This is also LWG#2994 - not yet adopted. by Marshall Clow · 6 years ago
  87. 37e4c9b Implement LWG2870: Default value of parameter theta of polar should be dependent by Marshall Clow · 6 years ago
  88. 65c4c24 Add LWG3051 by Marshall Clow · 6 years ago
  89. 64aa1c1 First cut at issue statuses for JAX by Marshall Clow · 6 years ago
  90. 4bbcce7 Add tests to make sure that <string_view> provides std::size/data/empty in C++17 mode. This is LWG#3009, coming up for a vote in JAX - but we already do it, just don't have tests by Marshall Clow · 6 years ago
  91. 6f79a90 Minor updated to the main libcxx page; add a link to the deprecation page by Marshall Clow · 6 years ago
  92. 1dfee5b LLVM_FOUND isn't always set, so just test if llvm_setup_rpath() is by Don Hinton · 6 years ago
  93. 27c341d Fix the BinaryPredicate form of std::is_permutation to not rely on operator== by Peter Collingbourne · 6 years ago
  94. 44aacb7 Reland: [cmake] [libcxx] Call llvm_setup_rpath() when adding shared libraries. by Don Hinton · 6 years ago
  95. 2b64fcb libcxx: Use vcruntime declarations for typeinfo on Windows. by Peter Collingbourne · 6 years ago
  96. 6b5c08a libcxx: Move #include_next <math.h> out of header guard in wrapper header. by Peter Collingbourne · 6 years ago
  97. e686a8d Mark 2903 as complete; we already do this by Marshall Clow · 6 years ago
  98. e0c8dbe Revert [libcxx] r323453 - [cmake] [libcxx] Call llvm_setup_rpath() when adding shared libraries. by Don Hinton · 6 years ago
  99. 102b0a1 [cmake] [libcxx] Call llvm_setup_rpath() when adding shared libraries. by Don Hinton · 6 years ago
  100. 8864da5 Fix PR35564 - std::list splice/erase incorrectly throw in debug mode. by Eric Fiselier · 6 years ago