1. 1e34c76 Implement filesystem NB comments, relative paths, and related issues. by Eric Fiselier · 6 years ago
  2. 46b8a51 Implement LWG#2518 - Non-member swap for propagate_const should call member swap by Marshall Clow · 6 years ago
  3. 806a6ec Implement LWG 2835 - fix <tgmath.h> by Marshall Clow · 6 years ago
  4. 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
  5. 5b1e87e Implement deduction guide for basic_string as described in P0433 by Marshall Clow · 6 years ago
  6. e686a8d Mark 2903 as complete; we already do this by Marshall Clow · 6 years ago
  7. 3e653d6 Mark LWG2824 as complete. We already did it, but I added a test to be sure by Marshall Clow · 7 years ago
  8. 1fb741d Mark issue #2866 as "nothing to do" by Marshall Clow · 7 years ago
  9. 73d6c99 Implement p0258r2: has_unique_object_representations by Marshall Clow · 7 years ago
  10. c1ab13d A couple more inlined variables that I missed the first time by Marshall Clow · 7 years ago
  11. c58e472 Implement most of P0607: Inline Variables for the Standard Library. This involved marking a lot of variables as inline (but only for C++17 and later). by Marshall Clow · 7 years ago
  12. f7d0fec Add issue 2587, which was missed by Marshall Clow · 7 years ago
  13. 14ff899 Implement LWG#2921 and LWG#2976 - removing allocator support from packaged_task. by Marshall Clow · 7 years ago
  14. aa0e236 Implement p0137r1 - std::launder. Reviewed as https://reviews.llvm.org/D40144 by Marshall Clow · 7 years ago
  15. f966d3f [libcxx] [www] Manually change http links to https. by Stephan T. Lavavej · 7 years ago
  16. 1e708af [libcxx] [www] Semi-manually change http://www.open-std.org and http://isocpp.org papers to https://wg21.link . by Stephan T. Lavavej · 7 years ago
  17. 819264f [libcxx] [www] Change http://wg21.link to https://wg21.link . by Stephan T. Lavavej · 7 years ago
  18. f226a28 Implement P0739R0: 'Some improvements to class template argument deduction integration into the standard library' This is an API change (not ABI change) due to a late change in the c++17 standard by Marshall Clow · 7 years ago
  19. 893ac44 Update libc++ status pages with results of the Toronto Meeting - and for C++2a by Marshall Clow · 7 years ago
  20. 8f0ca59 Mark LWG 2904 as complete. by Michael Park · 7 years ago
  21. 8a80169 Mark LWG#2900 as complete - we already do this, and I checked the tests in a couple days ago (r303268 & r303824) by Marshall Clow · 7 years ago
  22. 8392d49 Fix broken links on C++1z status page by Eric Fiselier · 7 years ago
  23. a9197bd Implement LWG#2790: Remove istreambuf_iterator::operator->. It never did anything useful. by Marshall Clow · 7 years ago
  24. 83c266a Mark LWG#2782 as complete. No functionality change; we already do this. Just added a few more tests. by Marshall Clow · 7 years ago
  25. 4cbf03e Mark LWG#2850 as complete. No functionality change; we had tests that covered it already. Just added comments to the tests. Thanks to K-ballo for the heads up. by Marshall Clow · 7 years ago
  26. 8fdd811 Mark LWG#2796 as complete. No functionality change; we had tests that covered it already. Just added comments to the tests by Marshall Clow · 7 years ago
  27. 76515a2 Implement LWG 2591 - Patch from K-Ballo by Eric Fiselier · 7 years ago
  28. 2f2efbd Mark LWG#2788 as complete - we already do this by Marshall Clow · 7 years ago
  29. 5e1df5e Mark LWG#2853 as complete. No code changes required, but added a couple of extra tests by Marshall Clow · 7 years ago
  30. a4fd0c9 Overhaul unique_ptr - Implement LWG 2801, 2905, 2520. by Eric Fiselier · 7 years ago
  31. 98d9a85 Implement LWG 2857 for variant. Tests from Casey Carter @ Microsoft. by Eric Fiselier · 7 years ago
  32. 6403571 Implement LWG#2855 - made easy by previous refactoring by Marshall Clow · 7 years ago
  33. 7b41c79 [libc++] Implement LWG 2911 - add an is_aggregate type-trait by Eric Fiselier · 7 years ago
  34. 01208af Implement LWG#2873: 'Add noexcept to several shared_ptr related functions' This issue missed a couple, so I added those as well (see LWG#2942) by Marshall Clow · 7 years ago
  35. 4132426 Mark P0599 as complete. It was implemented in r298573 by Marshall Clow · 7 years ago
  36. 2b3c1c4 Fix LWG 2934 - optional<const T> doesn't compare with T by Eric Fiselier · 7 years ago
  37. 5612bd4 Implement LWG 2842 - optional(U&&) needs to SFINAE on decay_t<in_place_t> by Eric Fiselier · 7 years ago
  38. 21ae16e Implement P0298R3: 'std::byte'. Reviewed as https://reviews.llvm.org/D31022 by Marshall Clow · 7 years ago
  39. 59bcc87 Implement Pp0156r2: 'Variadic Lock Guard, version 5' Reviewed as https://reviews.llvm.org/D31163. 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. 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
  44. 755dd59 Also mark LWG#2785 as complete, because we already implemented that by Marshall Clow · 7 years ago
  45. 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
  46. f158316 Mark LWG 2806 as complete. Libc++ speculatively shiped this change in 4.0 by Eric Fiselier · 7 years ago
  47. 27d4f66 Mark LWG 2789 as complete. No changes required by Eric Fiselier · 7 years ago
  48. 7c7df64 Implement LWG 2787 - [file_status.cons] is inconsistent by Eric Fiselier · 7 years ago
  49. b537d38 Mark LWG 2781 as complete. No changes required by Eric Fiselier · 7 years ago
  50. 76a3c66 Mark two any_cast issues as complete by Eric Fiselier · 7 years ago
  51. cd6055e Header update with info about the current status of C++17 by Marshall Clow · 7 years ago
  52. e116393 Update list with changes from Kona meeting by Marshall Clow · 7 years ago
  53. b7fd0be Update all bug URL's to point to https://bugs.llvm.org/... by Eric Fiselier · 7 years ago
  54. 515ba55 [libcxx] Remove unexpected handlers in C++17 by Eric Fiselier · 7 years ago
  55. d585455 Update a couple of issue statuses by Marshall Clow · 7 years ago
  56. a67aa06 Mark LWG 2765 as complete. No changes needed by Eric Fiselier · 7 years ago
  57. 07d23d5 Implement LWG 2773 - std::ignore should be constexpr. by Eric Fiselier · 7 years ago
  58. da70913 Fixed a couple of invalid statuses for 2665 and 2758 by Marshall Clow · 7 years ago
  59. 9bb0cca Implement LWG2556: Wide contract for future::share() by Marshall Clow · 7 years ago
  60. 4e42dc9 Change the return type of emplace_[front|back] back to void when building with C++14 or before. Resolves PR31680. by Marshall Clow · 7 years ago
  61. 9a89d24 Update status for LWG2733 by Marshall Clow · 7 years ago
  62. a5f53d0 Mark LWG2736 as complete. No code changes, but we have more tests now by Marshall Clow · 7 years ago
  63. fbe68a6 Implement LWG#2778: basic_string_view is missing constexpr. by Marshall Clow · 8 years ago
  64. 952eaec Implement P0513R0 - "Poisoning the Hash" by Eric Fiselier · 8 years ago
  65. 56257d4 Mark two of the TS implementations as 'in progress' by Marshall Clow · 8 years ago
  66. 8d2a5ad Mark 'constexpr char_traits' as complete. by Marshall Clow · 8 years ago
  67. 7d32d2f Implement P0403R1 - 'Literal suffixes for basic_string_view'. Requires clang 4.0 (specifically, r290744) by Marshall Clow · 8 years ago
  68. 3df90c9 Implement P0505: 'Wording for GB 50' by Marshall Clow · 8 years ago
  69. e22af6b Implement the last bit of P0031: 'A Proposal to Add Constexpr Modifiers to reverse_iterator, move_iterator, array and Range Access' for C++17 by Marshall Clow · 8 years ago
  70. d28b523 Update year to 2017 by Eric Fiselier · 8 years ago
  71. 9f988e6 Update "Making Optional Greater Equal Again" paper status by Eric Fiselier · 8 years ago
  72. 046a71b Implement P0435R1 - Resolving LWG issues for common_type by Eric Fiselier · 8 years ago
  73. 6d95982 Recommit r286884: P0503R0, adopted in Issaquah, rewords some requirements on nullptr_t and istream_iterator. by Eric Fiselier · 8 years ago
  74. b5c2c47 Update status page for variant implementation by Eric Fiselier · 8 years ago
  75. dd74cd2 Mark various <variant> items as complete by Eric Fiselier · 8 years ago
  76. e3cb222 Revert "P0503R0, adopted in Issaquah, rewords some requirements on nullptr_t and istream_iterator. No code changes were needed, but I updated a few tests. Also resolved P0509 and P0521, which required no changes to the library or tests." by Vedant Kumar · 8 years ago
  77. 506f7fc P0503R0, adopted in Issaquah, rewords some requirements on nullptr_t and istream_iterator. No code changes were needed, but I updated a few tests. Also resolved P0509 and P0521, which required no changes to the library or tests. by Marshall Clow · 8 years ago
  78. 3d7c49b Implement P0516: 'Clarify That shared_future’s Copy Operations have Wide Contracts' which was adopted last week in Issaquah by Marshall Clow · 8 years ago
  79. 5ec20df Implement P0510 'Make future_error Constructible' adopted in Issaquah by Marshall Clow · 8 years ago
  80. db7fa11 Fixes for LWG 2598, 2686, 2739, 2742, 2747, and 2759, which were adopted last week in Issaquah by Marshall Clow · 8 years ago
  81. 59368dd Update C++1z status with LWG papers from Issaquah. by Marshall Clow · 8 years ago
  82. 496fc7f Update C++1z status with LFTS issues from Issaquah. by Marshall Clow · 8 years ago
  83. d521adc Update C++1z status with C++17 issues from Issaquah. Still to come: LFTS issues and papers by Marshall Clow · 8 years ago
  84. 4414a6a Implement constexpr support for reverse_iterator. Reviewed as https://reviews.llvm.org/D25534 by Marshall Clow · 8 years ago
  85. 426eb5d Update the status of three papers that do not require library changes by Marshall Clow · 8 years ago
  86. e29fb4c Implement http://wg21.link/p0302r1: Removing Allocator Support in std::function. These functions never worked, and as far as I know, no one ever called them. by Marshall Clow · 8 years ago
  87. 508f208 Fix LWG2683 - filesystem::copy() should always clear the user-provided error_code by Eric Fiselier · 8 years ago
  88. 17c38db Mark LWG 2716 as complete - shuffle and sample disallows lvalue URNGs. by Eric Fiselier · 8 years ago
  89. 113315b Implement LWG 2711. Constrain path members. by Eric Fiselier · 8 years ago
  90. e739d54 [libcxx] Add std::any by Eric Fiselier · 8 years ago
  91. 83e9013 Mark LWG 2726 as complete. No code change needed. by Eric Fiselier · 8 years ago
  92. 1c1e91d Implement LCM and GCD for C++17. Same code as for Library Fundamentals TS. by Marshall Clow · 8 years ago
  93. e1445fd Implement the std::pair parts of "Improving pair and tuple". Completes N4387. by Eric Fiselier · 8 years ago
  94. e1a41a9 Implement LWG 2393. Check for LValue-callability. by Eric Fiselier · 8 years ago
  95. 7f630e8 Implement LWG2328. Rvalue stream extraction should perfect forward. by Eric Fiselier · 8 years ago
  96. c672a74 Implement P0040r3: Extending memory management tools by Eric Fiselier · 8 years ago
  97. 2645dbe Implement P0392r0. Integrate filesystem::path and string_view. by Eric Fiselier · 8 years ago
  98. f50841f Mark P0358r1 as complete. It is already implemented by Eric Fiselier · 8 years ago
  99. 4a2b933 Mark P0337r0 as complete. It was already implemented in std::experimental by Eric Fiselier · 8 years ago
  100. 3816ef9 Implement P0084r2. Changing emplace return types. by Eric Fiselier · 8 years ago