1. 708b86b Fix some places where we could call memmove(null,xxx,0) - which is UB by Marshall Clow · 9 years ago
  2. 56523ff In the case where we are copying/moving zero elements, do less work by Marshall Clow · 9 years ago
  3. fa97c2e Add missing return statements in C++03 std::function by Eric Fiselier · 9 years ago
  4. c4324b2 Add TODO items and remove use of 'noexcept' in C++03 test. by Eric Fiselier · 9 years ago
  5. ebc3169 Remove debugging code by Marshall Clow · 9 years ago
  6. bf0460e Don't try to memcpy zero bytes; sometimes the source pointer is NULL, and that's UB. Thanks to Nuno Lopes for the catch. by Marshall Clow · 9 years ago
  7. 0620fc8 Add TODO note about switching to __decltype by Eric Fiselier · 9 years ago
  8. 60784f6 Fix PR#23647 - make_shared<volatile bool> - second try by Marshall Clow · 9 years ago
  9. fc3a3ff Revert 238354 while I figure out what broke in weak_ptr by Marshall Clow · 9 years ago
  10. 83f8153 Fix PR#23647 - make_shared<volatile bool> by Marshall Clow · 9 years ago
  11. 14c616a Add N4259 to the list of papers from Lenexa. Update links to point at public repos. by Marshall Clow · 9 years ago
  12. 970d9f7 Get thread sleep_for test passing in C++03 by Eric Fiselier · 9 years ago
  13. 2cd0a2e Mark __convert_to_integral test as XFAIL in c++03 by Eric Fiselier · 9 years ago
  14. ee6bfb2 Cleanup move/forward tests and remove references to __rv. by Eric Fiselier · 9 years ago
  15. 8f1d85f Add test macros header to remove dependance on __config macros. by Eric Fiselier · 9 years ago
  16. 7242d18 Fix broken test I just added by Marshall Clow · 9 years ago
  17. b5b6692 Add tests to ensure that string/vector/array have contiguous iterators - which they did. Mark N4284 as complete by Marshall Clow · 9 years ago
  18. ecec10e Mark N4366 as complete. libc++ has done this since 2012 by Marshall Clow · 9 years ago
  19. 97092d6 Add TODO items by Eric Fiselier · 9 years ago
  20. 19158f2 Start a to-do list for libc++ by Marshall Clow · 9 years ago
  21. bae11ad Fix building and testing libc++ with GCC. by Eric Fiselier · 9 years ago
  22. 1a7ccb1 Fix race condition in thread test. by Eric Fiselier · 9 years ago
  23. 5d66344 Address @danalberts comments on r237700 by Eric Fiselier · 9 years ago
  24. d539803 Fix uninitialized values and bad enum conversions found by UBSAN. by Eric Fiselier · 9 years ago
  25. 5486fac Rename internal trait that used non-reserved name. by Eric Fiselier · 9 years ago
  26. a985b8c Add compiler flag test support to LIT. Fix new/delete tests on apple-clang. by Eric Fiselier · 9 years ago
  27. 5dce73d Implement LWG2433: uninitialized_copy()/etc. should tolerate overloaded operator& by Marshall Clow · 9 years ago
  28. 02be745 mark new/delete tests as XFAIL more carefully by Eric Fiselier · 9 years ago
  29. f4c9729 [libcxx] Rework sized delete. by Eric Fiselier · 9 years ago
  30. e7b12e3 Mark N4510 as complete; we already do this by Marshall Clow · 9 years ago
  31. e62560a Add support for N4389 - std::bool_constant by Marshall Clow · 9 years ago
  32. bc9ccda Update C++1z status; mark issues 2059,2369,2415,2454 and 2458 as 'complete'. I have committed patches for all of them by Marshall Clow · 9 years ago
  33. c7c52f9 Update C++1z status; mark all the issues that require no library change as 'complete' by Marshall Clow · 9 years ago
  34. de76389 Update C++1z status with issues and papers from Lenexa by Marshall Clow · 9 years ago
  35. c426682 Fix for LWG Issue 2458: N3778 and new library deallocation signatures. by Marshall Clow · 9 years ago
  36. 21f5b24 libcxx: Enhance lit test command in verbose mode. by Logan Chien · 9 years ago
  37. b6d12a2 Fix test that was failing on C++03 b/c it was using initializer lists by Marshall Clow · 9 years ago
  38. 4f8edc4 Fix build when libunwind is disabled. by Logan Chien · 9 years ago
  39. 5e5e11d libcxx: Fix ARM libc++/abi and libunwind buildbot. by Logan Chien · 9 years ago
  40. 22a6d5a Use clock_gettime()'s CLOCK_REALTIME instead of gettimeofday(). by Ed Schouten · 9 years ago
  41. 56a8c64 Implement std::experimental::sample. by Evgeniy Stepanov · 9 years ago
  42. a5ad9ac Document a known build issue on OS X 10.8 and later. by Eric Fiselier · 9 years ago
  43. 0ad232a Fix for LWG Issue 2415: Inconsistency between unique_ptr and shared_ptr by Marshall Clow · 9 years ago
  44. 928735a Fix for LWG Issue 2369: constexpr max(initializer_list) vs max_element by Marshall Clow · 9 years ago
  45. 488025c Fix for LWG Issue 2059: C++0x ambiguity problem with map::erase by Marshall Clow · 9 years ago
  46. 3607f86 Remove some debugging printout lines. No functionality change. by Marshall Clow · 9 years ago
  47. dbaf7a0 Fix for LWG2454: Add raw_storage_iterator::base() member by Marshall Clow · 9 years ago
  48. d20675f Fix typo in www. NFC by Jonathan Roelofs · 9 years ago
  49. cd13782 Replace two naked references of 'std::' with the macro '_VSTD::'. No functionality change. by Marshall Clow · 9 years ago
  50. 4b23a33 Found a Urbana paper that has library bits by Marshall Clow · 9 years ago
  51. 14dbb25 Fix -Wpessimizing-move warning by remove the call to std::move. by Richard Trieu · 9 years ago
  52. 3e879e3 Mark LWG#2387 as complete. No code changes needed by Marshall Clow · 9 years ago
  53. 7ceff4e Removed 'complete' from 2408; updated status by Marshall Clow · 9 years ago
  54. 46a7ec9 Fix some preprocessor directives that were generating warnings in the test suite. by Marshall Clow · 9 years ago
  55. 8f916f1 Update C++17 status; mark issues 2170, 2377, and 2408 as complete. We already do these; no code changes necessary. by Marshall Clow · 9 years ago
  56. 71ed9f0 Fixed an 'extra tokens at end of #endif directive' warning in experimental/ratio by Marshall Clow · 9 years ago
  57. c254b36 Remove constexpr support for std::apply because it introduces regressions. by Eric Fiselier · 9 years ago
  58. e9d0306 A few bits of N2994 didn't get fully implemented a long time ago. Thanks to STL@microsoft.com for the bug report by Marshall Clow · 9 years ago
  59. 3a4964a Qualify an internal call in is_assignable to prevent ADL lookup, which would 'complete' an type definition unnecessarily. Thanks to Richard Smith for the report. by Marshall Clow · 9 years ago
  60. 66302c6 In many places, there was an #ifdef/#else block that selected one of two implmentations of rebind_alloc based on whether or not we had template aliases. Create a helper struct to encapsulate that bit of logic, and replace all the ifdefs with uses of that struct. No functionality change intented. by Marshall Clow · 10 years ago
  61. 6be02cb Fix race conditions in test class used throughout the std::thread tests. by Eric Fiselier · 10 years ago
  62. 1d55ecf [libcxx] Fix bug in shared_timed_mutex that could cause a program to hang. by Eric Fiselier · 10 years ago
  63. 2cea80b Remove statement with no effect inside tests. by Eric Fiselier · 10 years ago
  64. 088ed9f [libcxx] Optimize vectors uninitialized construction of trivial types from an iterator range. by Eric Fiselier · 10 years ago
  65. bf9653d [libcxx] Add code coverage configuration to CMake and LIT. by Eric Fiselier · 10 years ago
  66. f68d637 Allow enabling CCache through an env variable. This helps enable/disable the option on buildbots. by Eric Fiselier · 10 years ago
  67. 3accbf0 Make the new tests better; make sure that we're testing the case where no reallocation has to happen by Marshall Clow · 10 years ago
  68. 86319f0 While testing Erik's code coverage scripts, I found a hole in the test suite - vector::assign where a reallocation was not required had no tests. Add some by Marshall Clow · 10 years ago
  69. 4bd1546 [libcxx] Fix PR22771 - Support access control SFINAE in the library version of is_convertible. by Eric Fiselier · 10 years ago
  70. 4f274d0 Only enable special apple link flags for libc++abi (or none) by Eric Fiselier · 10 years ago
  71. 91220d1 Fix PR23041. Use lock_shared() as opposed to lock() in shared_lock test. by Eric Fiselier · 10 years ago
  72. 28cf403 cleanup comments in sym_check by Eric Fiselier · 10 years ago
  73. faa65e9 Add readelf support to abi_check. Prefer readelf over nm by Eric Fiselier · 10 years ago
  74. fd4de45 Add tests for library version of is_convertible by Eric Fiselier · 10 years ago
  75. abd06b4 Make the presence of stdin and stdout optional. by Ed Schouten · 10 years ago
  76. 43dbeea Remove the state_types array. by Ed Schouten · 10 years ago
  77. 3f86893 Don't let time_put test use implementation dependent constructs. by Ed Schouten · 10 years ago
  78. 70e13a9 Fix incorrect error handling of call to mbrtowc. This is PR#13759. Leaving the bug open because (1) I'm not sure that we're correct here, only better than before, and (2) no tests by Marshall Clow · 10 years ago
  79. b58f517 Remove unneeded redeclaration of reference_wrapper. by Eric Fiselier · 10 years ago
  80. e199924 Improve automatic detection of filetype for sym_check by Eric Fiselier · 10 years ago
  81. efdefb2 Fix use of incorrect package name in sym_check by Eric Fiselier · 10 years ago
  82. 2d9feb5 Add symbol checking script to libc++ to help manage exported symbols. by Eric Fiselier · 10 years ago
  83. ffbfbcd Create macro to allow testing of is_convertible without the compiler builtin. by Eric Fiselier · 10 years ago
  84. 02c24c1 [libcxx] Unify LIBCXX_<ABI-Name>_INCLUDE_PATHS to be LIBCXX_CXX_ABI_INCLUDE_PATHS by Eric Fiselier · 10 years ago
  85. 64befb5 Add code to honor the match_not_bol and match_not_eol regex flats. Fixes PR#22651. Thanks to Jim Porter for the report and suggested fix. by Marshall Clow · 10 years ago
  86. 2d24d89 Add support for kfreebsd. Thanks to Jan Henke by Sylvestre Ledru · 10 years ago
  87. 537876b Fix use after free and calls to operator comma in debug mode by Eric Fiselier · 10 years ago
  88. 71aa376 [libc++] Fix PR22922 - Allocator support for std::function does not know how to rebind. by Eric Fiselier · 10 years ago
  89. 0b6f8ed Provide std::abs(<floating-point>) in <cmath> on Solaris. by Eric Fiselier · 10 years ago
  90. 9959bf0 Fix DYNLD_LIBRARY_PATH to include the ABI path if specified by Eric Fiselier · 10 years ago
  91. 9be398d Fix failed test command repro printing for *.pass.cpp tests by Jonathan Roelofs · 10 years ago
  92. 62a06f9 Clean up iostream creation in preparation for conditionalizing streams. by Ed Schouten · 10 years ago
  93. 13858ee [libcxx] Add <experimental/tuple> header for LFTS. by Eric Fiselier · 10 years ago
  94. 4d23cc6 Define a new macro: _LIBCPP_HAS_NO_VARIABLE_TEMPLATES and use it. No functionality change. by Marshall Clow · 10 years ago
  95. 8e706d2 [libcxx] Move tuple_size and tuple_element overloads for pair and array out of !defined(_LIBCPP_HAS_NO_VARIADICS) block. by Eric Fiselier · 10 years ago
  96. 061244c Don't attempt to validate the output of %p. by Ed Schouten · 10 years ago
  97. aa8a52c Fix a problem when calling throw_with_nested with a class marked 'final'. Thanks to STL @ Microsoft for the bug report. by Marshall Clow · 10 years ago
  98. eda3fca Don't hardcode the Czech locale name. by Ed Schouten · 10 years ago
  99. 84b6c1f Make *abs() and *div() work on CloudABI. by Ed Schouten · 10 years ago
  100. 438a5c9 Don't hardcode the locale name string. by Ed Schouten · 10 years ago