1. ff137e9 Implement LWG Issue #2285 - make_reverse_iterator. Also mark issues #1450 and #2205 as complete; they are just wording changes in the standard. Mark issues #2359, #2320 and #2322 as complete - libc++ implements them already. by Marshall Clow · 11 years ago
  2. 37a9ca6 More LWG issues. Mark #2182, #2323 and #2213 as complete. Add a test for #2339, and mark that as complete. No actual changes to the libc++ code; all of these were already in place. by Marshall Clow · 11 years ago
  3. 02ca8af LWG issue #2188: Reverse iterator does not fully support targets that overload operator&. Also mark #2272 and #2299 as complete; libc++ already implements them. by Marshall Clow · 11 years ago
  4. 103af34 Implement LWG issue 2306: match_results::reference should be value_type&, not const value_type&. This is a general move by the LWG to have the reference type of read-only containers be a non-const reference; however, there are no methods that return a non-const reference to a match_result entry, so there's no worries about getting a non-const reference to a constant object. by Marshall Clow · 11 years ago
  5. d3ac046 Mark LWG issue 2299 as complete. No code changes; libc++ already implements this. by Marshall Clow · 11 years ago
  6. e75439f Mark LWG Issue 2257 as complete. by Marshall Clow · 11 years ago
  7. cc47592 Mark LWG Issues 2278 and 2313 as complete. No code changes needed; libc++ already implemented both of these. by Marshall Clow · 11 years ago
  8. 8e554d9 Implement LWG issue 2301: Mark std::tie as constexpr by Marshall Clow · 11 years ago
  9. e0f8672 Implement LWG Issues #2329 and #2332 - disallow iterators into temporary regexes and regexes into temporary strings by Marshall Clow · 11 years ago
  10. d81d83f Mark issues 2280, 2258, 2304, 2317, 2350 and 2346 as completed. by Marshall Clow · 11 years ago
  11. b88d7cc Mark issue 2293, 2241 and 2308 as complete by Marshall Clow · 11 years ago
  12. 224dec2 First pass at the Issaquah issues list by Marshall Clow · 11 years ago
  13. ad2a600 Fix LWG Issue 2078. Make std::async(policy,...) try multiple policies until one succeeds. by Marshall Clow · 11 years ago
  14. 4259337 Update status of issues by Marshall Clow · 11 years ago
  15. 0f91166 Updated status of issues and features by Marshall Clow · 11 years ago
  16. dab89a1 Fix LWG Issue 2141: common_type trait produces reference types by Marshall Clow · 11 years ago
  17. 16f13a0 Marked issue 2284 as complete by Marshall Clow · 11 years ago
  18. de3cac7 LWG Issue 2247 by Marshall Clow · 11 years ago
  19. 69bf761 Updated status post-Chicago by Marshall Clow · 11 years ago
  20. 4af78bb Fixed bad link for n3789; thanks to Chip Davis for the catch by Marshall Clow · 11 years ago
  21. cb55b18 Missed a change that didn't have an issue number 'GB 9' by Marshall Clow · 11 years ago
  22. 9100875 Updated table with results from Chicago by Marshall Clow · 11 years ago
  23. dcc6a0b Apply LWG 2048. It is amazing to me that this actually works, but the existing tests confirm that it does. c++1y status page now showing libc++ is complete for c++1y modulo dynarray issues. by Howard Hinnant · 11 years ago
  24. 0836f87 Apply LWG 2021. This is only a documentation change. Also bringing c++1y status page up to date. by Howard Hinnant · 11 years ago
  25. 6ecf7f2 Fix link to dynarray issue by Marshall Clow · 11 years ago
  26. 94d3f6b Update status for <dynarray> by Marshall Clow · 11 years ago
  27. 62f34be N3545: Quoted strings by Marshall Clow · 11 years ago
  28. 058655b Mark issues 2103, 2005, 2196 and 2203 as complete. No code changes. by Marshall Clow · 11 years ago
  29. 656ed3c Updated status for LSG issues 2122, 2169, 2177, 2140 and 2086. by Marshall Clow · 11 years ago
  30. 2a25895 Update status of issues 2045, 2050, 2080, 2081, 2083, 2130, 2137 and 2177. by Marshall Clow · 11 years ago
  31. 9e613ca LWG Issue 2148: Hashing Enums by Marshall Clow · 11 years ago
  32. 85bbdcd Fix a typo in the status for <optional> by Marshall Clow · 11 years ago
  33. 01afa5c Implement N3672, optional<T>. by Howard Hinnant · 11 years ago
  34. 713f4db SFINAE out duration converting constructor if the constructor would otherwise cause a ratio compile-time overflow. This fixes LWG 2094. by Howard Hinnant · 11 years ago
  35. d179407 is_destructible for function types was mistakenly returning true instead of false. This is true in both C++11 and C++1y, but has been clarified by the post C++11 LWG issue 2049. by Howard Hinnant · 11 years ago
  36. 09da3c0 LWG Issue 2128: Implement global cbegin/rbegin/cend/rbegin by Marshall Clow · 11 years ago
  37. 24bf4b8 Typo: I wrote "2058" into the status column for issue 2058 instead of "Complete" by Marshall Clow · 11 years ago
  38. a96d22b Mark LWG issues 2109, 222, 2058, 2091 and 2092 as complete. No changes to libc++ code. by Marshall Clow · 11 years ago
  39. 1c2e46b Mark issues 2147, 2149, 2163, 2172, 2098 and 2177 as complete. No code changes to libc++ by Marshall Clow · 11 years ago
  40. a78b369 Marked #2163 as complete in previous commit instead of #2162. Corrected. by Marshall Clow · 11 years ago
  41. 08b4f3f LWG Issue 2162: mark allocator_traits::maxsize as noexcept by Marshall Clow · 11 years ago
  42. 83179a7 LWG issues 2174/5/6 - mark wstring_convert::converted as noexcept, and make (some of) the constructors for wstring_convert and wbuffer_convert as explicit. Add configuration macro _LIBCPP_EXPLICIT_AFTER_CXX11 by Marshall Clow · 11 years ago
  43. 5f36c68 Mark LWG issues 2190, 2200, and 2211 as done. No changes needed to libc++. by Marshall Clow · 11 years ago
  44. e42f184 Update synopsis in <locale> to match LWG Issue 2229. No code change by Marshall Clow · 11 years ago
  45. af74651 Implement LWG issue 2061 by Marshall Clow · 11 years ago
  46. bce2a47 Mark LWG issues 2011, 2015, 2033, 2065, 2071, 2102, 2235 as complete b/c libc++ already fixed them. by Marshall Clow · 11 years ago
  47. 5b7519e Mark LWG issues #2083, 2099 and 2105 as complete. No functionality change. by Marshall Clow · 11 years ago
  48. 5c316a6 LWG 2145 - mark constructor for std::error_category as inline and constexpr. Leave the (existing, out-of-line, non-constexpr) in the dylib for compatibility with existing programs) by Marshall Clow · 11 years ago
  49. 2a34052 Updated status of issues #2093, 2144, and 2185 by Marshall Clow · 11 years ago
  50. 802daf6 Updated status and description of issues 2064, 2069 and 2096. by Marshall Clow · 11 years ago
  51. cd17d90 Updated status of issues #2028, 2047, and 2053. by Marshall Clow · 11 years ago
  52. 78afc05 Updated status of issues #1214, 2207 and 2209. They were already implemented, so no functionality change was needed. by Marshall Clow · 11 years ago
  53. 811e713 Added some missing issues to the c++1y status page, and put in hyperlinks for the papers. by Howard Hinnant · 11 years ago
  54. e755995 remove CWG papers from list; add link to clang status page by Marshall Clow · 11 years ago
  55. 9b86fc1 Added CWG and SG1 papers to libc++ status page by Marshall Clow · 11 years ago
  56. 68b4025 Mark LWG Issue #2110 and #2113 as completed - they were already done by Marshall Clow · 11 years ago
  57. 2df3700 Add a deleted assignment operator for basic_ostream; LWG Issue #2067 by Marshall Clow · 11 years ago
  58. 198a2a5 Implement LWG Issue #2187 (emplace_back and emplace for vector<bool>) by Marshall Clow · 11 years ago
  59. 5da3087 Update for N3657 and issue 2010 by Marshall Clow · 11 years ago
  60. 23d1ccc Updated issues 2039, 2044, 2197, 2225, and 2231 by Marshall Clow · 11 years ago
  61. 6ef8408 Updated Issue 2187 by Marshall Clow · 11 years ago
  62. 0931015 Removed 'Ready' issues from Bristol by Marshall Clow · 11 years ago
  63. 83e40c4 Updated issues 2009 and 2074 by Marshall Clow · 11 years ago
  64. 6b229e1 Fix template formatting. No, really by Marshall Clow · 11 years ago
  65. deb471c escape some template specs by Marshall Clow · 11 years ago
  66. 5d48077 Create a C++14 status page by Marshall Clow · 11 years ago