1. 6547dc8 Fix C++17 dylib build by Eric Fiselier · 7 years ago
  2. f3b3a65 suppress GCC warning about noexcept functions changing mangling by Eric Fiselier · 7 years ago
  3. 9dcbb46 [libc++] Explicitly mark specializations as dllexport by Shoaib Meenai · 7 years ago
  4. ed3c0e6 string: Remove always_inline from basic_string::__init by Duncan P. N. Exon Smith · 7 years ago
  5. cc64159 Use strong enums independently of -fobjc-arc by Duncan P. N. Exon Smith · 7 years ago
  6. ccc0f58 Try to fix the libcxx build with mingw64 by Reid Kleckner · 7 years ago
  7. 2b3c1c4 Fix LWG 2934 - optional<const T> doesn't compare with T by Eric Fiselier · 7 years ago
  8. 5612bd4 Implement LWG 2842 - optional(U&&) needs to SFINAE on decay_t<in_place_t> by Eric Fiselier · 7 years ago
  9. 9783bae libc++ testing: fix invalid python syntax by Mehdi Amini · 7 years ago
  10. e1d7c51 libc++ testing: fix assertion around `use_system_cxx_lib` by Mehdi Amini · 7 years ago
  11. 6c9ed32 libc++ config testing: `use_system_cxx_lib` can be a bool by Mehdi Amini · 7 years ago
  12. 3f140f0 Reexport operator new / delete from libc++abi by Mehdi Amini · 7 years ago
  13. f18ccd8 libc++ testing: allow to provide a path for `use_system_cxx_lib` by Mehdi Amini · 7 years ago
  14. 0a74c73 Do not pass an explicit reexported symbol list when building libc++ dylib if also defining new/delete by Mehdi Amini · 7 years ago
  15. f012f26 [libc++] Add a key function for bad_function_call by Shoaib Meenai · 7 years ago
  16. 0b14877 Mark *pass tests as UNUSUPPORTED instead of XFAIL on old compilers by Marshall Clow · 7 years ago
  17. 76c1482 Mark *fail tests as UNUSUPPORTED instead of XFAIL on old compilers by Marshall Clow · 7 years ago
  18. 68fdad6 [libc++] Fix some comment typos by Shoaib Meenai · 7 years ago
  19. f23e281 [libc++] Fix word transposition in comment by Shoaib Meenai · 7 years ago
  20. e577401 [libc++] Fix capitalization in comment by Shoaib Meenai · 7 years ago
  21. 5b0087f [libc++] Update package version by Shoaib Meenai · 7 years ago
  22. 5048b1e XFAIL the std::byte tests on a bunch of old clang versions, because they don't like 'std::byte b1{1}' by Marshall Clow · 7 years ago
  23. 21ae16e Implement P0298R3: 'std::byte'. Reviewed as https://reviews.llvm.org/D31022 by Marshall Clow · 7 years ago
  24. 0c70c79 Move the scoped_lock inside the '#ifndef NO_THREADS' block to fix the no-threading build by Marshall Clow · 7 years ago
  25. 59bcc87 Implement Pp0156r2: 'Variadic Lock Guard, version 5' Reviewed as https://reviews.llvm.org/D31163. by Marshall Clow · 7 years ago
  26. 50e32f5 Update the algorithm tests to not use the (deprecated) function binders. No functional change. by Marshall Clow · 7 years ago
  27. 50145cc [libcxx] Improve code generation for vector::clear(). by Bruce Mitchener · 7 years ago
  28. 699c414 Use 'REQUIRES: c++98 || c++03 || c++11 || c++14' instead of the deprecated 'REQUIRES-ANY: c++98, c++03, c++11, c++14' by Marshall Clow · 7 years ago
  29. a901b56 One more file for the random_shuffle removal by Marshall Clow · 7 years ago
  30. 03b862f Remove random_shuffle in C++17. Please use shuffle instead. If you have to, you cant get it back by defining _LIBCPP_ENABLE_CXX17_REMOVED_RANDOM_SHUFFLE before including any libc++ headers. by Marshall Clow · 7 years ago
  31. 46da6b8 Silence a couple of 'unused variable' warnings in c++03 tests. No functional change by Marshall Clow · 7 years ago
  32. ad3680b Worked around GCC bug 56480. Explicit specialization in a different namespace. by Michael Park · 7 years ago
  33. 570f32c Can't test for noexcept on C++03; std::hash<nullptr_t> isn't available until C++17 by Marshall Clow · 7 years ago
  34. af552ba Implement P0599: 'noexcept for hash functions'. Fix a couple of hash functions (optional<T> and unique_ptr<T>) which were mistakenly marked as 'noexcept'. Reviewed as https://reviews.llvm.org/D31234 by Marshall Clow · 7 years ago
  35. 0309626 Address post-commit review comments regarding test_workarounds.h by Eric Fiselier · 7 years ago
  36. 0da4cb8 [libc++] Work around C1XX bug which breaks poisoned hash tests. by Eric Fiselier · 7 years ago
  37. faf14a5 Fix test failure I introduced by Marshall Clow · 7 years ago
  38. 6b6874c Fix a couple of 'C++11'-isms from the last checkin, which broke the '03 bot. by Marshall Clow · 7 years ago
  39. 6ccca38 Add a bit more to one of the chrono tests by Marshall Clow · 7 years ago
  40. cf6e0db Implement P0548: 'common_type and duration' This involves a subtle change in the return type of the unary +/- operators for std::chrono::duration, though I expect that no one will notice. by Marshall Clow · 7 years ago
  41. 0b1f95b Add two more papers from Kona, and sort them by Marshall Clow · 7 years ago
  42. 2d4c3fa Implement LWG#2761: 'basic_string should require that charT match traits::char_type'. Tests for string_view, too by Marshall Clow · 7 years ago
  43. e807cbc Add deployment knobs to tests (for Apple platforms) by Mehdi Amini · 7 years ago
  44. 0b23f9c Fixed unintentional assignment-in-assert in new "extending memory management tools" algorithms. by Billy Robert O'Neal III · 7 years ago
  45. 7a16fa8 Mark LWG issues 2868, 2872, and 2890 as complete. There's nothing we need to do for them. by Marshall Clow · 7 years ago
  46. 755dd59 Also mark LWG#2785 as complete, because we already implemented that by Marshall Clow · 7 years ago
  47. abba685 Implement LWG2784, and mark 2786, 2795, 2804, 2812, 2826, 2834, 2837 and 2838 as complete - since we do them already by Marshall Clow · 7 years ago
  48. dd1f059 Fix cmake to find the compiler-rt libs on darwin by Bruno Cardoso Lopes · 7 years ago
  49. 5cdf673 fix test coverage capture dirs by Eric Fiselier · 7 years ago
  50. c51e0d2 Change test coverage generation to use llvm-cov instead of gcov. by Eric Fiselier · 7 years ago
  51. 76880f5 Fix DoNotOptimize on MSVC by Eric Fiselier · 7 years ago
  52. 3b7c134 Disable unsigned integer sanitizer for basic_string::replace(). Patch from tomcherry@google.com by Eric Fiselier · 7 years ago
  53. 15da97c [libc++] Avoid double defining macro on Windows by Shoaib Meenai · 7 years ago
  54. f1dab68 Fix PR32183 - Wrap GCC exception implementation in missing namespace std by Eric Fiselier · 7 years ago
  55. 6f8ab3e Add list of filesystem NB comments to TODO.TXT so they can be tracked separately by Eric Fiselier · 7 years ago
  56. f158316 Mark LWG 2806 as complete. Libc++ speculatively shiped this change in 4.0 by Eric Fiselier · 7 years ago
  57. 27d4f66 Mark LWG 2789 as complete. No changes required by Eric Fiselier · 7 years ago
  58. 7c7df64 Implement LWG 2787 - [file_status.cons] is inconsistent by Eric Fiselier · 7 years ago
  59. b537d38 Mark LWG 2781 as complete. No changes required by Eric Fiselier · 7 years ago
  60. 76a3c66 Mark two any_cast issues as complete by Eric Fiselier · 7 years ago
  61. 5a99cf1 Updated email address in `CREDITS.txt`. by Michael Park · 7 years ago
  62. cd6055e Header update with info about the current status of C++17 by Marshall Clow · 7 years ago
  63. e116393 Update list with changes from Kona meeting by Marshall Clow · 7 years ago
  64. 45a6abf Fix nonsense comment by Eric Fiselier · 7 years ago
  65. b75f6de teach LIT how to detect the glibc version by Eric Fiselier · 7 years ago
  66. a075831 Remove the buildit and testit scripts; they haven't been supported in years by Eric Fiselier · 7 years ago
  67. c1b1d7f Fix hash requirements check in __hash_table. by Eric Fiselier · 7 years ago
  68. c795c2a Fix libc++ test to pass in C++03 mode by Mehdi Amini · 7 years ago
  69. f4dfb45 Clean up more usages of _LIBCPP_HAS_NO_RVALUE_REFERENCES by Eric Fiselier · 7 years ago
  70. 04732df Fix sign-compare warning in test; Oddly this only appears on OS X by Eric Fiselier · 7 years ago
  71. 778ec30 Work around test failure on 32 bit OS X by Eric Fiselier · 7 years ago
  72. 92dbfc4 remove max_size() extension from polymorphic_allocator. It is unneeded by Eric Fiselier · 7 years ago
  73. 3df9fd8 Fix libc++ test experimental/algorithms/alg.random.sample/sample.pass.cpp when ran in c++11 mode 32 bits by Mehdi Amini · 7 years ago
  74. 0cbd39f Work around GCC linking errors within libc++abi due to missing new/delete definitions by Eric Fiselier · 7 years ago
  75. f282bc8 Fix test failures caused by new/delete calls getting optimized away by Eric Fiselier · 7 years ago
  76. c6748b2 Update ABI list for 4.0 release by Eric Fiselier · 7 years ago
  77. dc69aac [libc++] Add option to disable new/delete overloads when libc++abi provides them. by Eric Fiselier · 7 years ago
  78. 6b73492 [libc++] Make _LIBCPP_TYPE_VIS export members by Shoaib Meenai · 7 years ago
  79. 24e8dbd [libc++] Make _LIBCPP_EXTERN_TEMPLATE_TYPE_VIS export members by Shoaib Meenai · 7 years ago
  80. 4795f13 [libc++] Mark some std::num_get method templates inline by Shoaib Meenai · 7 years ago
  81. 459bbcd Remove more usages of REQUIRES-ANY in the test-suite by Eric Fiselier · 7 years ago
  82. bd89190 Recommit r296712: "Fix Apple-specific XFAIL directive in libc++ test" by Mehdi Amini · 7 years ago
  83. c10e963 Revert "Fix Apple-specific XFAIL directive in libc++ test" by Mehdi Amini · 7 years ago
  84. a30d98b Fix python 3 syntax error in sym_diff by Eric Fiselier · 7 years ago
  85. 5876a62 Fix Apple-specific XFAIL directive in libc++ test by Mehdi Amini · 7 years ago
  86. d3acadc Fix Apple-specific XFAIL directive in libc++ test by Mehdi Amini · 7 years ago
  87. c57fb58 Generate the test configuration even when LIBCXX_INCLUDE_TESTS=OFF. by Eric Fiselier · 7 years ago
  88. 29ed46b [libcxx] Support threads on Fuchsia by Petr Hosek · 7 years ago
  89. 0987c0c Mark test as unsupported in C++11 by Eric Fiselier · 7 years ago
  90. f9ddb9a Fix test failures due to bad test hasher by Eric Fiselier · 7 years ago
  91. c642236 Improve diagnostics when an invalid hash is used in an unordered container. by Eric Fiselier · 7 years ago
  92. 67f7a78 Fix PR32097 - is_abstract doesn't work on class templates. by Eric Fiselier · 7 years ago
  93. 0268c19 Updated the XFAIL comment in variant tests. by Michael Park · 7 years ago
  94. 244033d Remove XFAIL in implicit_deduction_guides tests by Steven Wu · 7 years ago
  95. 3f017a8 Fix LIBCXX_HAS_EXTERNAL_THREAD_API builds. NFC. by Asiri Rathnayake · 7 years ago
  96. 62aeff9 Fix typo in error message. NFC. by Asiri Rathnayake · 7 years ago
  97. dec9851 Fix cmake dependency for the external-thread-library variant. NFC. by Asiri Rathnayake · 7 years ago
  98. e891cc8 Revert "threading_support: make __thread_sleep_for be alertable" by Saleem Abdulrasool · 7 years ago
  99. 7556597 test: silence warnings on clang under clang-cl by Saleem Abdulrasool · 7 years ago
  100. 1eab168 math: add type promoting template definition on MSVCRT by Saleem Abdulrasool · 7 years ago