1. cb23a49 Turn off -pedantic by default when building due to #include_next. :-( by Eric Fiselier · 10 years ago
  2. 42b89c7 Revert r249931 - Remove same_decls.pass.cpp because it fails on OS X and in C++03 mode. by Eric Fiselier · 10 years ago
  3. ea33904 Get some of wchar_h.pass.cpp working on apple. by Eric Fiselier · 10 years ago
  4. de66c51 Unrevert r249889, and XFAIL the test for Darwin, where the libc apparently doesn't provide a correct overload set for some functions. by Richard Smith · 10 years ago
  5. 8b7a6b8 Add a test that we declare the right set of C library function signatures in :: by Richard Smith · 10 years ago
  6. 9f4f08d Split <string.h> out of <cstring>. by Richard Smith · 10 years ago
  7. e35e663 Revert r249889 due to bot failure. by Manman Ren · 10 years ago
  8. f2b3629 Split <wctype.h> out of <cwctype>. by Richard Smith · 10 years ago
  9. 26a70ec Split <wchar.h> out of <cwchar>. by Richard Smith · 10 years ago
  10. f650ea7 Split <stdlib.h> out of <cstdlib>. by Richard Smith · 10 years ago
  11. ff7ba4d Split <stdio.h> out of <cstdio>. by Richard Smith · 10 years ago
  12. 45bae0b PR25118: move system_header pragma before uses of include_next to avoid extension warnings for people finding libc++ headers via -I paths. by Richard Smith · 10 years ago
  13. 1883b40 Fix test failure in C++98 mode due to imperfect static_assert emulation. by Richard Smith · 10 years ago
  14. 759cd0e Split <stddef.h> out of <cstddef>. by Richard Smith · 10 years ago
  15. 4ccd90d Fix incorrect file header. This is <cfenv> not <cctype>. by Richard Smith · 10 years ago
  16. ddbf081 Split <setjmp.h> out of <csetjmp>. by Richard Smith · 10 years ago
  17. 4faa394 Split <math.h> out of <cmath>. by Richard Smith · 10 years ago
  18. 325c37a Split <inttypes.h> out of <cinttypes>. by Richard Smith · 10 years ago
  19. f82f4f3 Split <float.h> out of <cfloat>. by Richard Smith · 10 years ago
  20. 1bbbd60 Split <errno.h> out of <cerrno>. by Richard Smith · 10 years ago
  21. ceeace9 Split <ctype.h> out of <cctype>. by Richard Smith · 10 years ago
  22. 72d7577 Factor definition of std::nullptr_t out of <cstddef> into a header that can also be used by <stddef.h>. by Richard Smith · 10 years ago
  23. d20ca91 Mark 2244 as 'Patch Ready', 2477 and 2487 as 'Complete' by Marshall Clow · 10 years ago
  24. a09319b While researching LWG#2244, I noticed we weren't testing that eofbit was being cleared. Now we are by Marshall Clow · 10 years ago
  25. d8b2456 Remove unnecessary inline functions capturing the contents of C library macros. by Richard Smith · 10 years ago
  26. d2a59ae Updated issue 2476 by Marshall Clow · 10 years ago
  27. 5142fe4 Our test allocators support move/copy construction; they should support move/copy assignment as well by Marshall Clow · 10 years ago
  28. d06b33e Add comments for LWG issues 2219 and 2367 by Eric Fiselier · 10 years ago
  29. 2d2757f Mark 2259 and 2473 as complete. Add some more notes by Marshall Clow · 10 years ago
  30. 0d2d92e Mark 2380 and 2384 as complete; no changes needed by Marshall Clow · 10 years ago
  31. fa8c649 Patch for 2466 is ready by Marshall Clow · 10 years ago
  32. ba47751 Fixed a possible overflow in a test of allocator::max_size(). by Marshall Clow · 10 years ago
  33. f956599 Mark a couple more issues 'ready' by Marshall Clow · 10 years ago
  34. 960bd0c Mark 2072 as complete; we already do this by Marshall Clow · 10 years ago
  35. f8941c1 Patch ready for 2127 by Marshall Clow · 10 years ago
  36. 25daee7 [libcxx] Reexport std::bad_array_length symbols from libc++abi on OS X. by Eric Fiselier · 10 years ago
  37. 74a6450 Add comments about the issues by Marshall Clow · 10 years ago
  38. 6f287e9 Private page for status of Kona issues and papers. Will be deleted after the Kona meeting. Not to be linked to from other pages. by Marshall Clow · 10 years ago
  39. 7ed093b Implement LWG#2063, and update the issues links to point to the github generated pages by Marshall Clow · 10 years ago
  40. e3898a2 [libcxx] Use newest supported language dialect when running the test suite. by Eric Fiselier · 10 years ago
  41. 423ca20 [libcxx] Attempt to fix __throw_future_error in C++03 by Eric Fiselier · 10 years ago
  42. d95ca09 Attempt to prevent flaky thread.mutex tests by once again increasing timing tolerances by Eric Fiselier · 10 years ago
  43. 9698ac5 Manually suppress -Wnonnull when it occurs in an unevaluated context by Eric Fiselier · 10 years ago
  44. 5289b0d Fix initialzation order in dynarray by Eric Fiselier · 10 years ago
  45. 237206b Suppress array initialization warnings in std::experimental::apply tests by Eric Fiselier · 10 years ago
  46. 49abdbc Dont link -lrt in the testsuite on linux unless using sanitizers. by Eric Fiselier · 10 years ago
  47. 6a85e8a Fix Typo in GCC no RTTI detection. Fixes PR#24901. Thanks to Bernhard Rosenkraenzer for the report and the patch. by Marshall Clow · 10 years ago
  48. da3ca86 Add placeholder __libcpp_relaxed_store() for when atomic builtins are not available. by Dimitry Andric · 10 years ago
  49. 514c831 Remove possible trailing padding from aligned_storage. Patch from Yiran Wang by Eric Fiselier · 10 years ago
  50. bf94e48 The test I cnecked in to check the fix for PR#24890 failed (as expected) w/o the fix, but for the wrong reason. Now it fails for the right reason. by Marshall Clow · 10 years ago
  51. 842e3f6 Check in the test for PR#24890 that I forgot in previous commit by Marshall Clow · 10 years ago
  52. 6b0e419 Change pair::swap(pair&) to call ADL swap instead of iter_swap; this fixes an obscure bug having to do with overloaded operator&. Fixes PR#24890 by Marshall Clow · 10 years ago
  53. 0b4ab6f Fix <atomic> with -pedantic-errors by Eric Fiselier · 10 years ago
  54. 2897e78 Add endianness configuration block for GCC. by Dan Albert · 10 years ago
  55. 41a04d6 Suppress some warnings in the tests that snuck in. That 'tmpnam' is deprecated doesn't change the fact that we have to test it. by Marshall Clow · 10 years ago
  56. c2d317f Change initialization of mbstate_t objects in tests from '= {0}' to '= {}', which does the same thing, w/o having clang and gcc warn with -Wall. by Marshall Clow · 10 years ago
  57. af9a44f Implementation of Boyer-Moore and Boyer-Moore-Horspool searchers for the LFTS. by Marshall Clow · 10 years ago
  58. 65a6f64 make common_type SFINAE-friendly and support void. Patch from Agustin Berge. by Eric Fiselier · 10 years ago
  59. b22481a Cleanup BuildingLibcxx.rst and remove TODO by Eric Fiselier · 10 years ago
  60. 5d514c0 Fix another bad link in the new docs by Eric Fiselier · 10 years ago
  61. 7ec94be Try to fix links for libcxx.llvm.org/docs again. by Eric Fiselier · 10 years ago
  62. 82c5745 Try and fix links again. Seems to be a sphinx version issue. by Eric Fiselier · 10 years ago
  63. 4b5169a Try and fix broken bugzilla link by Eric Fiselier · 10 years ago
  64. 1aa96e8 Cleanup new documentation index and transfer more information from www/index.html by Eric Fiselier · 10 years ago
  65. cf829c9 Remove test commit. by Tanya Lattner · 10 years ago
  66. 9641982 Test temporary commit. by Tanya Lattner · 10 years ago
  67. bf54da7 Test commit for builder by Eric Fiselier · 10 years ago
  68. e3ec600 Add temporary Makefile.sphinx build file to get libcxx.llvm.org/docs going by Eric Fiselier · 10 years ago
  69. 46f9f32 Try building docs again. by Eric Fiselier · 10 years ago
  70. 6e5b234 Test commit for sphinx docs try2 by Eric Fiselier · 10 years ago
  71. 0dec9d5 Test commit to see if libcxx.llvm.org/docs builds by Eric Fiselier · 10 years ago
  72. a189974 Make a helper routine __throw_future_error, and encapsulate the #ifdef _LIBCPP_NO_EXCEPTIONS there, instead of duplicating it throughout the code. No functionality change by Marshall Clow · 10 years ago
  73. 6d9da58 Remove unused code. NFC by Marshall Clow · 10 years ago
  74. cae4cab Move __lazy_* metafunctions to type traits and add tests by Eric Fiselier · 10 years ago
  75. 408369b Suppress clang warnings in some tests by Eric Fiselier · 10 years ago
  76. 9eddf6e Remove task to get C++03 tests passing from TODO.txt by Eric Fiselier · 10 years ago
  77. e2d4892 Fix most GCC warnings during build. Only -Wattribute left. by Eric Fiselier · 10 years ago
  78. 8781327 Finally get the test suite passing in C++03!! by Eric Fiselier · 10 years ago
  79. ba3e81f Remove empty file that arcanist created by Eric Fiselier · 10 years ago
  80. aff153a [libcxx] Constrain unique_ptr::operator=(unique_ptr<Tp, Dp>) in C++03 mode by Eric Fiselier · 10 years ago
  81. 031a3d2 [libcxx] Mark most test/std/future tests as UNSUPPORTED in C++03 by Eric Fiselier · 10 years ago
  82. 5ec04a9 Fix bug in test_allocator<void> that used the wrong value to represent object state by Eric Fiselier · 10 years ago
  83. 4f24182 [libcxx] Optimize away unneeded length calculation in basic_string::compare(const char*) by Eric Fiselier · 10 years ago
  84. 044df63 Do not include pthread.h and sched.h when threads are disabled by Jonathan Roelofs · 10 years ago
  85. 5ea4430 Remove a switch statement, and replace with a bunch of ifs to silence a warning about 'all the enumeration values covered'. No functional change. by Marshall Clow · 10 years ago
  86. 961269d [libcxx] Remove installation rules on Darwin when it would overwrite the system installation. by Eric Fiselier · 10 years ago
  87. e94b484 [libcxx] Add special warning flag detection logic to compiler.py by Eric Fiselier · 10 years ago
  88. f1626ad [libcxx] Rewrite C++03 __invoke. by Eric Fiselier · 10 years ago
  89. db8a5fd Refactor flaky shared_mutex tests by Eric Fiselier · 10 years ago
  90. 3dfc10d Remove XFAIL in test. The bug causing it has been fixed. by Eric Fiselier · 10 years ago
  91. 6d51f6c Mark test as XFAIL with MSAN until D12311 gets committed by Eric Fiselier · 10 years ago
  92. 7bcd570 Refactor and fix more flaky shared_mutex tests by Eric Fiselier · 10 years ago
  93. 4add27b Move test/std/utilities/date.time to proper stable name utilities/time/date.time by Eric Fiselier · 10 years ago
  94. 5e91fa1 Misc drive-by cleanups. NFC by Jonathan Roelofs · 10 years ago
  95. 6804e8b Add release goals to TODO.txt by Eric Fiselier · 10 years ago
  96. 70e8f59 Fix a crasher found by libFuzzer by Marshall Clow · 10 years ago
  97. bb2f28e Recommit rL245802: Cleanup fancy pointer rebinding in list using __rebind_pointer. by Eric Fiselier · 10 years ago
  98. d686dda Revert r245802. It violates the incomplete type requirements. by Eric Fiselier · 10 years ago
  99. a276cb0 Cleanup fancy pointer rebinding in list using __rebind_pointer. by Eric Fiselier · 10 years ago
  100. a73d092 Refactor shared_timed_mutex tests. by Eric Fiselier · 10 years ago