- c35d862 Fix the search path for CMake files by Niels Ole Salscheider · 10 years ago
- e784f57 re.results.form: Format out-of-range subexpression references as null by Duncan P. N. Exon Smith · 10 years ago
- d118e32 [docs] Remove references to autoconf build. by Alexey Samsonov · 10 years ago
- 8057a58 [libcxx] Whitelist inclusion of sysctl.h instead of blacklisting by Ben Craig · 10 years ago
- 5089530 Remove autoconf support. by Eugene Zelenko · 10 years ago
- 9f11882 [libcxx] Work around for clang calling GAS after having already failed. by Daniel Sanders · 10 years ago
- ef67e42 [libcxx] Remove pragmas that were needed to suppress warnings produced by Akira Hatanaka · 10 years ago
- b8d4b4c Left a file out of r259014 by Marshall Clow · 10 years ago
- 40a097d implement ostream_joiner. Reviewed as http://reviews.llvm.org/D16605 by Marshall Clow · 10 years ago
- 0b8b88a [libcxx] Additional 'REQUIRE' directives for tests that require en_US.UTF-8. by Daniel Sanders · 10 years ago
- 82091b2 [libcxx] Remove -Wpadded from buildit script. by Akira Hatanaka · 10 years ago
- c778a6a Fix broken commit r258888. I missed adding two pointer conversions by Eric Fiselier · 10 years ago
- de637db [libcxx] Fix undefined behavior in forward_list by Eric Fiselier · 10 years ago
- 949215c Remove dead code missed in r258852. by Eric Fiselier · 10 years ago
- e01f946 Fix PR26103 - Error calling is_convertible with incomplete type. Patch from Michael Daniels. by Eric Fiselier · 10 years ago
- 73de880 Implement LWG#2385; remove the allocator-aware std::function::assign call. It was useless, and didn't actually *do anything* with the allocator. Now it's gone. On the off chance that someone is mistakenly calling it, it's only gone in C++1z by Marshall Clow · 10 years ago
- 005e38f Revert "unordered_map: Reuse insert logic in emplace when possible, NFC" by Duncan P. N. Exon Smith · 10 years ago
- cd86b70 Fix test to pass in C++03 by Marshall Clow · 10 years ago
- 9f745c8 unordered_map: Reuse insert logic in emplace when possible, NFC by Duncan P. N. Exon Smith · 10 years ago
- 9572235 unordered: Rename __construct_node_hash() to allow forwarding, NFC by Duncan P. N. Exon Smith · 10 years ago
- 219d4ef Add __uncvref type for use in later patches by Eric Fiselier · 10 years ago
- 7a7960f Implement LWG#2101 'Some transformation types can produce impossible types' Introduced a new (internal) type trait '__is_referenceable' with tests. Use that trait in add_lvalue_reference, add_rvalue_reference and add_pointer. by Marshall Clow · 10 years ago
- cd17b3b [libcxx] Add appropriate 'REQUIRE' directives to tests that require en_US.UTF-8. by Daniel Sanders · 10 years ago
- 2edcac4 Use TEST_STD_VER instead of __has_feature to detect noexcept. This fixes the test with GCC. by Eric Fiselier · 10 years ago
- f90978a More string fixes for noexcept cases. Apparently I didn't get them all in r258281. by Marshall Clow · 10 years ago
- c8b24c6 Mark some test XFAIL for GCC 4.9 due to missing is_trivial* traits by Eric Fiselier · 10 years ago
- b8f31a1 Got the test backwards in r258279. Fixed that and de-tabbed by Marshall Clow · 10 years ago
- 85d4c2a Fix up the tests I added for string exceptions to be skipped when exceptions are disabled by Marshall Clow · 10 years ago
- 14a9008 Add link to 3rd party GDB pretty-printers by Eric Fiselier · 10 years ago
- 1c7fb81 Fix enviroment variables when running shell scripts by Eric Fiselier · 10 years ago
- a9e91f3 Add more missing license headers by Eric Fiselier · 10 years ago
- fa1e5db Add missing license headers by Eric Fiselier · 10 years ago
- e3bf91a Mark slow ASAN/MSAN tests as XFAIL for now. by Eric Fiselier · 10 years ago
- 685cdca Fix PR#26175. Thanks to Josh Petrie for the report and the patch. Reviewed as http://reviews.llvm.org/D16262 by Marshall Clow · 10 years ago
- 90a7bf9 Tame a -Wunknown-attributes warning by Jonathan Roelofs · 10 years ago
- 7d98883 Better comments in test. NFC by Marshall Clow · 10 years ago
- 2dceed8 Fix test for C++03 - lacking noexcept by Marshall Clow · 10 years ago
- df9db31 Fix PR#25973 : 'basic_string::assign(InputIt, InputIt) doesn't provide the strong exception safety guarantee'. This turned out to be a pervasive problem in <string>, which required a fair amount of rework. Add in an optimization for when iterators provide noexcept increment/comparison/assignment/dereference (which covers many of the iterators in libc++). Reviewed as http://reviews.llvm.org/D15862 by Marshall Clow · 10 years ago
- b27535c Update version to 3.9 by Hans Wennborg · 10 years ago
- 2afbf71 [WebAssembly] Set std::numeric_limits's traps field for WebAssembly. by Dan Gohman · 10 years ago
- 4f4a07d One more missing std:: qualification from Jonathan by Marshall Clow · 10 years ago
- e5e9bff Add a bunch of missing includes in the test suite to make it more portable. Fixes bugs #26120 and #26121. Thanks to Jonathan Wakely for the reports and the patches. by Marshall Clow · 10 years ago
- 040a034 Put the definition of _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK in the right place. by Marshall Clow · 10 years ago
- 7a3731f Preemptively disable unsigned integer sanitization in 32 and 64 bit versions of __murmur2_or_cityhash. This lets people use the unsigned integer overflow checker in UBSAN w/o getting hits from libc++'s hash code (where the unsigned integer overflow is legal and deliberate)> Patch by @danielaustin. Reviewed as: http://reviews.llvm.org/D15973 by Marshall Clow · 10 years ago
- 4c7ee80 Revert "Remove visibility attributes from out-of-class method definitions in iostreams." by Evgeniy Stepanov · 10 years ago
- 94fae86 [libcxx] Set LC_ALL rather than LC_COLLATE to override collation. by Ahmed Bougacha · 10 years ago
- 7861de2 Add explicit include directives; the file was getting implicitly included already. NFC by Marshall Clow · 10 years ago
- 17a797c Remove some test scaffolding that I added and then didn't need. No functional change by Marshall Clow · 10 years ago
- 3426a86 First half of LWG#2354: 'Unnecessary copying when inserting into maps with braced-init syntax' by Marshall Clow · 10 years ago
- 2320439 [libcxx] Fix typo in darwin target_info.py introduced by r256621. by Ahmed Bougacha · 10 years ago
- f3e2a71 Print stacktrace with UBSAN by Eric Fiselier · 10 years ago
- 8e7bd4f Remove unsafe "__as_link()" cast member function. by Eric Fiselier · 10 years ago
- 5cf84e0 Use __rebind_pointer to avoid #ifdef block by Eric Fiselier · 10 years ago
- 5c74b48 [libcxx] Fix for ALL undefined behavior in <list>. by Eric Fiselier · 10 years ago
- b1ece9c Fix locale feature testing in test suite. by Eric Fiselier · 10 years ago
- ce5695f Revert r256606 due to compiler-rt sanitizer bot failures by Eric Fiselier · 10 years ago
- 44f2e41 Cleanup CMake for out-of-tree builds by Eric Fiselier · 10 years ago
- 2c9141a Fix test failure in 32 bit mode by Eric Fiselier · 10 years ago
- e9cac66 Mark LWG defect #2367 as complete by Eric Fiselier · 10 years ago
- 41f24f9 [libcxx] Fixing the Mac / Darwin build by Ben Craig · 10 years ago
- 4273e31 [libcxx] Fixing silly mistake from last commit. by Ben Craig · 10 years ago
- 424a05c [libcxx] Fixing the Linux sanitizer builds by Ben Craig · 10 years ago
- 75ea3d3 [libcxx] Refactoring target_info.py by Ben Craig · 10 years ago
- 9bef1ff [libcxx] Fix LWG Issue #2367 - Fixing std::tuple and std::pair's default constructors. by Eric Fiselier · 10 years ago
- 9a6a9c0 Fix type in tuple test. Sorry for the noise by Eric Fiselier · 10 years ago
- 199bee0 [libcxx] LWG2485: get() should be overloaded for const tuple&&. Patch from K-Ballo. by Eric Fiselier · 10 years ago
- 85df7a8 Add CMake option LIBCXX_CONFIGURE_IDE to allow for other IDE's. by Eric Fiselier · 10 years ago
- c8f54c2 Make noexcept specifications on __hash_table definitions match their declarations. by Eric Fiselier · 10 years ago
- d6a12b3 Workaround nasty GCC bug that caused testsuite to hang by Eric Fiselier · 10 years ago
- 0710b55 Remove unused _LIBCPP_HAS_NO_ALWAYS_INLINE_VARIADICS macro by Eric Fiselier · 10 years ago
- a3d6b12 [libcxx] Enable noexcept for GCC 4.6 and greater by Eric Fiselier · 10 years ago
- 6ba2156 Mark declarations of externally instantiated functions as inline so GCC doesn't complain. by Eric Fiselier · 10 years ago
- e39f4b9 Fix various GCC mis-configurations for newer versions. by Eric Fiselier · 10 years ago
- 8459d20 Update paths in libc++ build instructions. Patch from Jonathan Anderson. by Eric Fiselier · 10 years ago
- ed99798 Update how libc++/libc++abi link the tests. Follow up on r255559. by Eric Fiselier · 10 years ago
- 90e328c K-Ballo pointed out a mistake in the add_lvalue_ref tests I checked in; now more of them are passing. Thanks by Marshall Clow · 10 years ago
- d18b496 Missed this on the previous (255517) commit by Marshall Clow · 10 years ago
- b6621c5 Fix a corner case that involved calling rethrow_if_nested with a type that had a deleted operator&. Added a test to catch this as well. Thanks to Ville for the heads-up. by Marshall Clow · 10 years ago
- 633fe50 Add add_lvalue_ref tests for a few function types, with a note why not more by Marshall Clow · 10 years ago
- 563647a Replace cmake check for printf with a check for fopen. by Evgeniy Stepanov · 10 years ago
- bbca174 Remove redundant _LIBCPP_ALWAYS_INLINE attribute from __convert_to_integral overloads by Eric Fiselier · 10 years ago
- 9b45238 Remove visibility attributes from out-of-class method definitions in iostreams. by Evgeniy Stepanov · 10 years ago
- 28c02db Add 3 more missing inline/visibility attributes. by Evgeniy Stepanov · 10 years ago
- 76d2446 Use __make_integer_seq builtin for std::make_integer_sequence. Patch by K-ballo. by Eric Fiselier · 10 years ago
- 5be047d Cleaned up the intro for the TS status page; really need much more info here by Marshall Clow · 10 years ago
- a846b11 [CMake] If you're not installing the libcxx library, exclude it from the "all" target so it doesn't get built when you run "ninja install" by Chris Bieneman · 10 years ago
- a3866e4 Last bit of P0006; mark it as complete by Marshall Clow · 10 years ago
- ea97290 Fix bugs in alignment_of_v, etc. Re-enable the newly added tests by Marshall Clow · 10 years ago
- c180f34 Temporarily disable new tests while I figure out what's going on by Marshall Clow · 10 years ago
- 5c2fabf Fix bad macros by Marshall Clow · 10 years ago
- c666b13 Missing file from last commit by Marshall Clow · 10 years ago
- 8254964 Implement more of P0006; Type Traits Variable Templates. <ratio> by Marshall Clow · 10 years ago
- b5599c6 Fix bad macros in tests by Marshall Clow · 10 years ago
- a3e7f52 Implement more of P0006; Type Traits Variable Templates. by Marshall Clow · 10 years ago
- 14ba0ad Add static_assert to set/multiset/map/multimap/forward_list/deque that the allocator's value_type match the container's value_type. vector/unordered/list/string already do this. Add tests for all the containers to verify this. by Marshall Clow · 10 years ago
- 5a579cf Silence a -Wmissing-braces warning in the tests; mbstate_t is defined differently on different C libraries. by Marshall Clow · 10 years ago
- eefcf82 Remove undefined behavior from tests; specifically, ensure that the value type of the allocators match the value type of the containers by Marshall Clow · 10 years ago
- 5e00a71 Use libcxx's default rune table with the Musl C library. by Vasileios Kalintiris · 10 years ago
- a660757 Fix some mistakes in the <utility> and <tuple> synopses. No functional change. Thannks to K-ballo for the patch by Marshall Clow · 10 years ago
- d871728 Fix some mistakes in the <array> synopsis. No functional change. Thanks to K-ballo for the patch by Marshall Clow · 10 years ago