1. 542c6e8 Mark LWG2784 as ready by Marshall Clow · 8 years ago
  2. 166d27e filesystem: return the constructed object by Saleem Abdulrasool · 8 years ago
  3. 24597f2 Add some tests to verify that we implement LWG#2837 correctly. No functional change. by Marshall Clow · 8 years ago
  4. c3eec46 Fix a typo - extra '>' by Marshall Clow · 8 years ago
  5. 5a00ab8 Set up 'upcoming meeting' bug list by Marshall Clow · 8 years ago
  6. cda122b Refer to _LIBCPP_MSVC macro where applicable by Saleem Abdulrasool · 8 years ago
  7. a67aa06 Mark LWG 2765 as complete. No changes needed by Eric Fiselier · 8 years ago
  8. 07d23d5 Implement LWG 2773 - std::ignore should be constexpr. by Eric Fiselier · 8 years ago
  9. fdbd18f [libcxx] [test] Strip trailing whitespace. by Stephan T. Lavavej · 8 years ago
  10. 19ab479 [libcxx] [test] Fix comment typos. by Stephan T. Lavavej · 8 years ago
  11. b40cb98 [libcxx] [test] Avoid MSVC's non-Standard ABI in underlying_type.pass.cpp. by Stephan T. Lavavej · 8 years ago
  12. 041fb56 [libcxx] [test] Fix Clang -Wpessimizing-move "moving a temporary object prevents copy elision". by Stephan T. Lavavej · 8 years ago
  13. 02af098 [libcxx] [test] Fix Clang -Wdeprecated-declarations with MSVC's CRT. by Stephan T. Lavavej · 8 years ago
  14. 0eb6bb8 [libcxx] [test] Fix Clang -Wunused-local-typedef, part 3/3. by Stephan T. Lavavej · 8 years ago
  15. 9396079 [libcxx] [test] Fix Clang -Wunused-local-typedef, part 2/3. by Stephan T. Lavavej · 8 years ago
  16. 5597800 [libcxx] [test] Fix Clang -Wunused-local-typedef, part 1/3. by Stephan T. Lavavej · 8 years ago
  17. 0becc20 Restore the _NOEXCEPT on the dtor of bad_optional_access. Destructors are noexcept by default, so it's not really needed, but the other exception classes have the _NOEXCEPT, and gcc complains if these are missing. I think we should remove them all - but not today. by Marshall Clow · 8 years ago
  18. a1c7fbb Fix variant build errors with GCC 7 by Eric Fiselier · 8 years ago
  19. d78b104 Adjust Apple ABI list after r294133 by Eric Fiselier · 8 years ago
  20. d55abe9 Adjust Linux ABI list after r294133 by Eric Fiselier · 8 years ago
  21. e2261bd Change the base class of std::bad_optional_access. This is a (subtle) ABI change, and is in response to http://http://wg21.link/LWG2806, which I *expect* to be adopted in Kona. I am making this change now in anticipation, and will get it into 4.0, because (a) 4.0 is the first release with std::optional, and (b) I don't want to make an ABI-change later, when the user base should be significantly larger. Note that I didn't change std::experimental::bad_optional_access, because that's still specified to derive from std::logic_error. by Marshall Clow · 8 years ago
  22. 7566869 filesystem: fix n4100 conformance for `temp_directory_path` by Saleem Abdulrasool · 8 years ago
  23. 1138f04 Remove CMake hack by Eric Fiselier · 8 years ago
  24. dab8677 Fix typo in docs by Eric Fiselier · 8 years ago
  25. b89eba0 Recommit [libcxx] Never use <cassert> within libc++ by Eric Fiselier · 8 years ago
  26. 236b752 Fix inconsistency in tuple's SFINAE. Patch from Andrey Khalyavin" by Eric Fiselier · 8 years ago
  27. 9e6abfa Mark basic_string::assign templates as inline to improve ABI stability. by Eric Fiselier · 8 years ago
  28. b1b1dcf Undefine min/max in __tree by Eric Fiselier · 8 years ago
  29. e520f0b Avoid implementation defined behavior in a test. by Dan Albert · 8 years ago
  30. 1773efd Extend XFAIL to c++98. by Asiri Rathnayake · 8 years ago
  31. 90b3732 Fix up some no-exception compile failures by Marshall Clow · 8 years ago
  32. cb14d02 Workaround new -Wshadow warning introduced by r293599 by Alex Lorenz · 8 years ago
  33. 9247fd2 Fix PR#31779: basic_string::operator= isn't exception safe. by Marshall Clow · 8 years ago
  34. e70b4ec Revert "Adorn __call_once_proxy with `inline` and `_LIBCPP_INLINE_VISIBILITY`" by Justin Bogner · 8 years ago
  35. 445b823 experimental: avoid using raw _WIN32 in filesystem by Saleem Abdulrasool · 8 years ago
  36. 5c518e1 experimental: port directory_iterator to Windows by Saleem Abdulrasool · 8 years ago
  37. 1d3b737 experimental: add missing file header by Saleem Abdulrasool · 8 years ago
  38. 52241cb experimental: remove some extraneous _LIBCPP_FUNC_VIS by Saleem Abdulrasool · 8 years ago
  39. eebb4f7 experimental: inline single use of a typedef by Saleem Abdulrasool · 8 years ago
  40. b35cd98 experimental: tolerate the existence of a `__deref` macro by Saleem Abdulrasool · 8 years ago
  41. 2868162 experimental: remove dead function by Saleem Abdulrasool · 8 years ago
  42. bc11659 config: prevent the re-definition of a macro by Saleem Abdulrasool · 8 years ago
  43. 362353a Disable thread safety analysis for some functions in __thread_support by Dimitry Andric · 8 years ago
  44. da70913 Fixed a couple of invalid statuses for 2665 and 2758 by Marshall Clow · 8 years ago
  45. bcc92d7 Fix chromium build (libcxx) by Asiri Rathnayake · 8 years ago
  46. f783971 Use the new __has_feature(cxx_constexpr_string_builtins) for detection of the C-string intrinsics for constexpr support in std::char_traits. Thanks to Richard for the intrisic support. by Marshall Clow · 8 years ago
  47. 19cd3fd Fixed a typo in the synopsis (noecept -> noexcept). Thanks to Kim for the catch by Marshall Clow · 8 years ago
  48. 8a032c5 [libcxx] Mentions "targeting C++11 and above" instead of "targeting C++11" in the doc by Mehdi Amini · 8 years ago
  49. 9bb0cca Implement LWG2556: Wide contract for future::share() by Marshall Clow · 8 years ago
  50. 4e42dc9 Change the return type of emplace_[front|back] back to void when building with C++14 or before. Resolves PR31680. by Marshall Clow · 8 years ago
  51. b4d17ad Remove auto_ptr in C++17. Get it back by defining _LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR by Marshall Clow · 8 years ago
  52. bef26f7 Add a test to make sure that implicit conversion from error_code to bool will fail by Marshall Clow · 8 years ago
  53. 9a89d24 Update status for LWG2733 by Marshall Clow · 8 years ago
  54. 9849405 Implement LWG2733: [fund.ts.v2] gcd / lcm and bool. We already did tbis for C++17, so replicate the changes in experimental. by Marshall Clow · 8 years ago
  55. a5f53d0 Mark LWG2736 as complete. No code changes, but we have more tests now by Marshall Clow · 8 years ago
  56. b08183b A couple more tests for constexpr stuff in string_view. No changes other than test code. by Marshall Clow · 8 years ago
  57. c73c1fc Update Linux ABI lists to reflect inlining change in LLVM. More investigation tomorrow. by Eric Fiselier · 8 years ago
  58. a49c64f Revert "[libcxx] Never use <cassert> within libc++" by Eric Fiselier · 8 years ago
  59. 1a3bde1 Revert yet another accidental change caused by r292684 by Eric Fiselier · 8 years ago
  60. 1bd94ed Fix bad XFAIL which recent LIT changes diagnosed by Eric Fiselier · 8 years ago
  61. 66ed0bc Remove all usages of REQUIRES-ANY in the test suite. by Eric Fiselier · 8 years ago
  62. 2c90d1f [libcxx] Never use <cassert> within libc++ by Eric Fiselier · 8 years ago
  63. cdb5d25 Manually force the use of __decltype in C++03 with Clang 3.4. by Eric Fiselier · 8 years ago
  64. f472d6c Fix GCC C++03 build by hiding default template argument in C++03 by Eric Fiselier · 8 years ago
  65. fbe68a6 Implement LWG#2778: basic_string_view is missing constexpr. by Marshall Clow · 8 years ago
  66. 6111e65 Fixed a typo in __config that prevented the aligned new/delete tests from passing on Mac OS. by Marshall Clow · 8 years ago
  67. ec1d3f7 Revert previous cleanup; I got too agressive removing #ifdefs by Marshall Clow · 8 years ago
  68. 45f4ec2 Removed some un-needed ifdefs by Marshall Clow · 8 years ago
  69. 85e34e4 Revert accidentally changes which reverted r292582 by Eric Fiselier · 8 years ago
  70. 17b6e14 Fix recent build errors by Eric Fiselier · 8 years ago
  71. 952eaec Implement P0513R0 - "Poisoning the Hash" by Eric Fiselier · 8 years ago
  72. ee856f1 Don't default older GCC's to C++17, but C++14 or C++11 instead by Eric Fiselier · 8 years ago
  73. 0cefc52 Revert "Don't default older GCC's to C++17, but C++14 or C++11 instead" by Eric Fiselier · 8 years ago
  74. 76c85b1 Don't default older GCC's to C++17, but C++14 or C++11 instead by Eric Fiselier · 8 years ago
  75. 19b1c83 Still expose std::align_val_t in C++17 even if we don't have aligned new/delete. by Eric Fiselier · 8 years ago
  76. 478f902 Refactor unique_ptr/shared_ptr deleter test types into single header. by Eric Fiselier · 8 years ago
  77. d54d974 Disable aligned new/delete on Apple platforms without posix_memalign by Eric Fiselier · 8 years ago
  78. e28ff33 [NFC] Group aligned new/delete definitions together in new.cpp by Eric Fiselier · 8 years ago
  79. fba0eee Fix handling of Apple target triple when checking the ABI lists. by Eric Fiselier · 8 years ago
  80. e013dac Fix demangle helper after r286788 by Eric Fiselier · 8 years ago
  81. e70e03c Adjust msvc_stdlib_force_include.hpp to handle clang++ by Eric Fiselier · 8 years ago
  82. 56257d4 Mark two of the TS implementations as 'in progress' by Marshall Clow · 8 years ago
  83. aa0c167 [libcxx] [test] Add msvc_stdlib_force_include.hpp. by Stephan T. Lavavej · 8 years ago
  84. 16e2ba1 [libcxx] [test] Fix comment typos, strip trailing whitespace. by Stephan T. Lavavej · 8 years ago
  85. c3564b9 [libcxx] [test] Fix MSVC warnings C4127 and C6326 about constants. by Stephan T. Lavavej · 8 years ago
  86. 0d4bd61 Re-add mechanism to override LIT options using enviroment variables. by Eric Fiselier · 8 years ago
  87. 3dcf50c Revert "Add mechanism to override LIT options using enviroment variables" by Eric Fiselier · 8 years ago
  88. 55c5f6b Add mechanism to override LIT options using enviroment variables by Eric Fiselier · 8 years ago
  89. f2b4889 Fix filesystem::path assignment from {} by Eric Fiselier · 8 years ago
  90. 6fb6490 Get more std::string _LIBCPP_DEBUG tests passing by Eric Fiselier · 8 years ago
  91. 44dbdb4 More configuration changes for running the test suite against MSVC's STL by Eric Fiselier · 8 years ago
  92. 6fbac40 Add support for running our test suite against MSVC's STL by Eric Fiselier · 8 years ago
  93. 08305aa Allow sym_diff.py to report non-zero for non-breaking ABI changes by Eric Fiselier · 8 years ago
  94. 1b30568 Fix type_info's constructor by making it explicit again. by Eric Fiselier · 8 years ago
  95. 8e39559 Don't strip -m32 from the user provide command line flags. This fixes the compiler-rt 32 bit sanitizer build by Eric Fiselier · 8 years ago
  96. c8fc92c [libcxx] [test] Don't ask whether Incomplete& can be assigned to. by Stephan T. Lavavej · 8 years ago
  97. 37b2be9 Fix std::string assignment ambiguity from braced initializer lists. by Eric Fiselier · 8 years ago
  98. a7ae303 Add ABI option to remove recently inlined __shared_count functions from the library. by Eric Fiselier · 8 years ago
  99. 9133ead Fix DLL build by removing _LIBCPP_FUNC_VIS from member of class marked dllexport by Eric Fiselier · 8 years ago
  100. 8993759 [Test patch] Inline hot functions in libcxx shared_ptr by Kevin Hu · 8 years ago