1. 5e57142 Rename _LIBCPP_DEBUG2 to _LIBCPP_DEBUG. by Howard Hinnant · 11 years ago
  2. 5d5f9f9 Remove _LIBCPP_DEBUG. This was my first attempt at debug mode for libc++, and is now obsoleted by _LIBCPP_DEBUG2 (which isn't finished). by Howard Hinnant · 11 years ago
  3. 499cea1 Debug mode for string. This commit also marks the first time libc++ debug-mode has found a bug (found one in regex). Had to play with extern templates a bit to get this to work since string is heavily used within libc++.dylib. by Howard Hinnant · 11 years ago
  4. e31c432 Glen: replace obsolete _LIBCPP_CANTTHROW with _NOEXCEPT. by Howard Hinnant · 11 years ago
  5. 5b7519e Mark LWG issues #2083, 2099 and 2105 as complete. No functionality change. by Marshall Clow · 11 years ago
  6. 641d3d8 XFAIL a few tests on darwin12 by Howard Hinnant · 11 years ago
  7. 9a894d9 Zhihao Yuan noted that there were a few unneeded statements. Eliminated the unnecessary ones, and commented the ones that are there for non-obvious reasons such as to help things limp along in C++03 language mode. by Howard Hinnant · 11 years ago
  8. 1c44f51 Zhihao Yuan noted that a move assignment operation was missing from std::adjacent_difference. Fixed. by Howard Hinnant · 11 years ago
  9. 8a1df3c David Blaikie suggested this test for detecting constexpr on the error_category default constructor. Additionally I decided to make this constructor trivial as well, as I could not come up with a rationale for not doing so. Fully tested with both current Apple clang and tip-of-trunk clang. by Howard Hinnant · 11 years ago
  10. d7cddf6 XFAIL 3 tests on darwin 11-12. The tests have recently been modified, are correct, and pass with an updated libc++.dylib by Howard Hinnant · 11 years ago
  11. 585b48d [tests] Update to use lit's now-integrated XFAIL handling. by Daniel Dunbar · 11 years ago
  12. 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
  13. 2a34052 Updated status of issues #2093, 2144, and 2185 by Marshall Clow · 11 years ago
  14. 802daf6 Updated status and description of issues 2064, 2069 and 2096. by Marshall Clow · 11 years ago
  15. cd17d90 Updated status of issues #2028, 2047, and 2053. by Marshall Clow · 11 years ago
  16. 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
  17. 9c07b14 G M: minor fix to silence warning in cmake version 2.8.11.20130809-gba97e. by Howard Hinnant · 11 years ago
  18. de8fc6b Relax complete-type check for functions and function pointers to allow void return type. This bug was exposed by Eli Friedman's commit to clang r188324. Anywhere this version of clang ships, this libc++ fix must follow. However this fix is compatible with previous clangs, and so this libc++ doesn't need to wait for this clang. by Howard Hinnant · 11 years ago
  19. 7f76450 Xing Xue: port to IBM XLC++/AIX. by Howard Hinnant · 11 years ago
  20. 3e005bf Fix signed/unsigned warnings when building libc++ in C++14 mode by Marshall Clow · 11 years ago
  21. 811e713 Added some missing issues to the c++1y status page, and put in hyperlinks for the papers. by Howard Hinnant · 11 years ago
  22. e755995 remove CWG papers from list; add link to clang status page by Marshall Clow · 11 years ago
  23. 9b86fc1 Added CWG and SG1 papers to libc++ status page by Marshall Clow · 11 years ago
  24. 68b4025 Mark LWG Issue #2110 and #2113 as completed - they were already done by Marshall Clow · 11 years ago
  25. 2df3700 Add a deleted assignment operator for basic_ostream; LWG Issue #2067 by Marshall Clow · 11 years ago
  26. 198a2a5 Implement LWG Issue #2187 (emplace_back and emplace for vector<bool>) by Marshall Clow · 11 years ago
  27. bf6eda0 Eradicate tabs by Marshall Clow · 11 years ago
  28. 5da3087 Update for N3657 and issue 2010 by Marshall Clow · 11 years ago
  29. 5cfc6ab Second half (map/multimap) of N3657 by Marshall Clow · 11 years ago
  30. 23d1ccc Updated issues 2039, 2044, 2197, 2225, and 2231 by Marshall Clow · 11 years ago
  31. 6ef8408 Updated Issue 2187 by Marshall Clow · 11 years ago
  32. 0931015 Removed 'Ready' issues from Bristol by Marshall Clow · 11 years ago
  33. 83e40c4 Updated issues 2009 and 2074 by Marshall Clow · 11 years ago
  34. 8634fc5 Added more tests for numeric conversion error handing; Refs LWG issue 2009 by Marshall Clow · 11 years ago
  35. 6b229e1 Fix template formatting. No, really by Marshall Clow · 11 years ago
  36. deb471c escape some template specs by Marshall Clow · 11 years ago
  37. 437cdcf Fix case mismatch by Marshall Clow · 11 years ago
  38. 5d48077 Create a C++14 status page by Marshall Clow · 11 years ago
  39. 7a4e374 More support for N3657; tests for is_transparent by Marshall Clow · 11 years ago
  40. 4a0a981 First half of support for N3657; heterogenous lookups for set/multiset by Marshall Clow · 11 years ago
  41. 0f678bd Nico Rieck: this patch series fixes visibility issues on Windows as explained in <http://lists.cs.uiuc.edu/pipermail/cfe-dev/2013-August/031214.html>. by Howard Hinnant · 11 years ago
  42. 80e19ac Add a check for arrays of unknown bounds to is_destructible. This fixes http://llvm.org/bugs/show_bug.cgi?id=16839 by Howard Hinnant · 11 years ago
  43. 5ea5d31 Partial implementation of N3665. This paper was not voted into the C++1y draft. However I was looking at it and with some experimentation realized that I could partially implement it, and at the same time offer a performance optimization to cout. I simply added an xsputn override to the cout filebuf. The override does nothing special at all if there is a non-trivial codecvt installed. However if the codecvt returns true for always_noconv(), then this function can dump an entire string to fwrite, instead of doing it a character at a time under overflow(). This just makes sense. I stopped short of a full implementation of N3665 because in order to do so, xsputn would have to allocate a buffer when always_noconv() returned false, and I don't want to go to that expense. by Howard Hinnant · 11 years ago
  44. bd7b48a [tests] Update to use lit_config and lit package, as appropriate. by Daniel Dunbar · 11 years ago
  45. 051c848 N3644 tests for map/multimap/set/multiset. Drive-by NOEXCEPT for __tree_const_iterator constructor. Fix comment typos in other tests by Marshall Clow · 11 years ago
  46. a4e87ab My previous reorganization of addressof broke -std=c++03. Thanks much to Arnold Schwaighofer for catching this. This patch also catches a few more missing addressof in <future>, thanks go to Zhihao Yuan for catching these. by Howard Hinnant · 11 years ago
  47. a709c82 Revert r187927. by Arnold Schwaighofer · 11 years ago
  48. 70730d8 Update CREDITS.TXT by Howard Hinnant · 11 years ago
  49. d8bfe7b Zhihao Yuan: Replace operator& with addressof in reference_wrapper constructor. by Howard Hinnant · 11 years ago
  50. 193ef03 N3644 support for <unordered_set> and <unordered_map> by Marshall Clow · 11 years ago
  51. b92ee61 N3644 support for vector<bool> by Marshall Clow · 11 years ago
  52. 52ad482 N3644 support for vector<bool> by Marshall Clow · 11 years ago
  53. 0f164c9 N3644 support for <string> and <vector> by Marshall Clow · 11 years ago
  54. 36ba399 Correct logic bug in find optimization for vector<bool>. This fixes http://llvm.org/bugs/show_bug.cgi?id=16816 by Howard Hinnant · 11 years ago
  55. ab61b2c War on tabs by Howard Hinnant · 11 years ago
  56. f68b46f Rename time.duration.literals step 3 by Howard Hinnant · 11 years ago
  57. 32c0969 Rename time.duration.literals step 2 by Howard Hinnant · 11 years ago
  58. c29e1b9 Rename time.duration.literals step 1 by Howard Hinnant · 11 years ago
  59. f9c29e1 Implement tests for NULL iterators for <array> re: N3644 by Marshall Clow · 11 years ago
  60. 5a11f94 Implement NULL iterators for <forward_list> and <deque> re: N3644 by Marshall Clow · 11 years ago
  61. 65d2e6a Implement NULL iterators for <list> re: N3644 by Marshall Clow · 11 years ago
  62. 824c199 debug mode for unordered_map. Also picked up a missing check and test in unordered_multimap. This wraps up debug mode for the unordered containers. by Howard Hinnant · 11 years ago
  63. 8b00e6c Ok, 3 major changes for debug mode in one commit: by Howard Hinnant · 11 years ago
  64. e9df0a5 Nico Rieck: Currently _MSC_VER and _WIN32 are used to guard code which is by Howard Hinnant · 11 years ago
  65. 56dcf0b Taking another swing at correctly optimizing fill_n. by Howard Hinnant · 11 years ago
  66. eb34122 Constrain fill_n -> memset operations to include implicit convertibility to unsigned char. This fixes http://llvm.org/bugs/show_bug.cgi?id=16764. Also a drive-by fix on a chrono test suite bug. by Howard Hinnant · 11 years ago
  67. a61e6f8 Implement constexpr (n3302) and fix operator *= and /= by Marshall Clow · 11 years ago
  68. 0777473 Backwards! by Marshall Clow · 11 years ago
  69. 832b304 Implement n3469 - constexpr for chrono by Marshall Clow · 11 years ago
  70. f890d9b Debug mode for unordered_multimap. Some mods were done for unordered_map as well to keep all the tests passing. However unordered_map is at the very least still missing tests, if not functionality (if it isn't tested, it probably isn't working). by Howard Hinnant · 11 years ago
  71. 0bb0a7c Debug mode for unordered_multiset. The exercise spotted a few places I had missed on unordered_set, so I picked those up as well. by Howard Hinnant · 11 years ago
  72. d5bfe90 Add operator new[] to test. Partial fix for valgrind warning in http://llvm.org/bugs/show_bug.cgi?id=16703. by Howard Hinnant · 11 years ago
  73. ff46409 Implement N3421; comparison predicates<void> by Marshall Clow · 11 years ago
  74. b87922c Glen: Minor tweaks to locale.cpp to help it compile with exceptions turned off. by Howard Hinnant · 11 years ago
  75. f182038 literal suffixes for std::chrono by Marshall Clow · 11 years ago
  76. 3921364 Debug mode for unordered_set. I believe this to be fairly complete for by Howard Hinnant · 11 years ago
  77. 1523432 Implement string suffixes from N3642 by Marshall Clow · 11 years ago
  78. cd59acc Bill Fisher: This patch fixes a bug where std::regex in ECMAScript mode was ignoring capture groups inside lookahead assertions. by Howard Hinnant · 11 years ago
  79. ed14a76 Add some friendly messages to libcxx calls to abort(). by Howard Hinnant · 11 years ago
  80. 01fbfc2 Add some missing cv-qualifiers. by Richard Smith · 11 years ago
  81. b8e0d90 Fix a bug in std::fill_n where memset would end up being called in cases when it shouldn’t. by Anders Carlsson · 11 years ago
  82. da0a0e8 Make tuple's constructor and std::get<>(tuple) constexpr. Final stage of fixing bug #16599. Thanks to Howard for the review and updates. by Marshall Clow · 11 years ago
  83. 8fc4f5a Make std::get constexpr by Marshall Clow · 11 years ago
  84. f7777e8 Add pointer format test for Windows. by Howard Hinnant · 11 years ago
  85. 206f6cd Bug 16599 part 2: Make std::pair's constructors and comparison operators (and make_pair) constexpr. by Marshall Clow · 11 years ago
  86. 01a0e90 Make std::forward and std::move (and std::move_if_noexcept) constexpr in C++14 by Marshall Clow · 11 years ago
  87. 1e1d051 Bill Fisher: This patch fixes an ill-formed comparison when parsing control escapes, e.g. "\cA\ca". The code will now throw an error_escape exception for invalid control sequences like "\c:" or "\c". by Howard Hinnant · 11 years ago
  88. 1f96a4d A few fixes to tests for Windows port. by Howard Hinnant · 11 years ago
  89. ac93d0e Add macro _LIBCPP_CONSTEXPR_AFTER_CXX11 for functions that have been marked constexpr post C++11 by Marshall Clow · 11 years ago
  90. e8029e5 Implement n3584 - Addressing Tuples by Type by Marshall Clow · 11 years ago
  91. ef7a7b7 Port make_[un]signed tests to platforms where sizeof(wchar_t) == 2. by Howard Hinnant · 11 years ago
  92. e840208 Bill Fisher: This patch fixes a less likely case where '\b' can back up into invalid memory, when driven by a regex_iterator (for case 1, see r185273 or http://llvm.org/bugs/show_bug.cgi?id=16240) by Howard Hinnant · 11 years ago
  93. 37c17ed Improved tests (and fixed a bug in the tests); thanks to Richard Smith for the suggestion by Marshall Clow · 11 years ago
  94. 809e93f move __save_flags from <random> to <ios> in preparation for reuse; no functionality change by Marshall Clow · 11 years ago
  95. 7670f7d Bill Fisher: This patch fixes a bug where regex_iterator doesn't indicate when it's restarting in the middle of a string. This bug causes /^a/ to match in the middle of the string "aaaaaaa", during iteration. by Howard Hinnant · 11 years ago
  96. 171771a War on tabs. by Howard Hinnant · 11 years ago
  97. e2735d1 Implement n3668 - std::exchange by Marshall Clow · 11 years ago
  98. d29bb4b Implement n3545 for c++14 by Marshall Clow · 11 years ago
  99. 0769e6a Windows port for __codecvt_utf8<wchar_t>. by Howard Hinnant · 11 years ago
  100. d712a59 Silence -Wint-to-void-pointer-cast warning in test. by Howard Hinnant · 11 years ago