- c1fcd97 [libcxx] [test] Fix MSVC warnings and errors. by Stephan T. Lavavej · 8 years ago
- 292617e [libc++] Fix PR20855 -- libc++ incorrectly diagnoses illegal reference binding in std::tuple. by Eric Fiselier · 8 years ago
- 63db89f Add another test_macros.h include I missed to tuple.by.type.pass.cpp by Billy Robert O'Neal III · 8 years ago
- ba40b05 Change (void) casts to TEST_IGNORE_NODISCARD, as requested by Eric. Reviewed as https://reviews.llvm.org/D40065 by Billy Robert O'Neal III · 8 years ago
- 346bd6a Placate unused variable warnings uncovered by improvements to clang's -Wunused-variable by Benjamin Kramer · 8 years ago
- af65856 Add C++17 explicit deduction guides to std::pair. by Eric Fiselier · 8 years ago
- 73f7f8d [libcxx] [test] Fix -Wmismatched-tags in tuple_size_structured_bindings.pass.cpp. by Stephan T. Lavavej · 8 years ago
- 5984426 [libcxx] [test] Strip trailing whitespace. NFC. by Stephan T. Lavavej · 8 years ago
- afdc993 [libcxx] [test] Add more tests to tuple_size_structured_bindings.pass.cpp and make it friendlier to C1XX. by Stephan T. Lavavej · 8 years ago
- 183d83b XFAIL tuple deduction guide test on GCC by Eric Fiselier · 8 years ago
- baaee20 Add tests for class template deduction on std::tuple. by Eric Fiselier · 8 years ago
- 5750a3f Fix or move tests with non-standard assumptions by Eric Fiselier · 8 years ago
- 9630f46 Mark LWG#2796 as complete. No functionality change; we had tests that covered it already. Just added comments to the tests by Marshall Clow · 8 years ago
- 95f8e6a Cleanup _LIBCPP_HAS_NO_<c++11-feature> in the utilities library by Eric Fiselier · 9 years ago
- 3c35491 Update all bug URL's to point to https://bugs.llvm.org/... by Eric Fiselier · 9 years ago
- 9af60c4 Implement LWG 2773 - std::ignore should be constexpr. by Eric Fiselier · 9 years ago
- 881d861 [libcxx] [test] Fix comment typos. by Stephan T. Lavavej · 9 years ago
- 7a7d4cd Revert previous cleanup; I got too agressive removing #ifdefs by Marshall Clow · 9 years ago
- faebbf7 Removed some un-needed ifdefs by Marshall Clow · 9 years ago
- a730ed3 [libcxx] [test] Fix comment typos, strip trailing whitespace. by Stephan T. Lavavej · 9 years ago
- 07aaf62 Fix XPASS buildbot failure related to structured bindings by Eric Fiselier · 9 years ago
- a00db36 Fix verify test on 32 bit systems by Eric Fiselier · 9 years ago
- cb0d4df [libcxx] Re-implement LWG 2770 again: Fix tuple_size to work with structured bindings by Eric Fiselier · 9 years ago
- 1013fe3 Re-implement LWG 2770 - Fix tuple_size with structured bindings. by Eric Fiselier · 9 years ago
- fd83822 Fix unused parameters and variables by Eric Fiselier · 9 years ago
- f34964b Fix XFAILS for is_trivially_destructible trait by Eric Fiselier · 9 years ago
- f4d7c18 Add tests for LWG 2796 by Eric Fiselier · 9 years ago
- 3fede1c Add more test cases for PR31384 by Eric Fiselier · 9 years ago
- 9ce1745 Add test case for PR31384 by Eric Fiselier · 9 years ago
- 347a1cc Revert r289727 due to PR31384 by Eric Fiselier · 9 years ago
- 7cd166c Work around bug in initialization of std::array base class with older clangs by Eric Fiselier · 9 years ago
- f8136d0 [libcxx] Fix tuple construction/assignment from types derived from tuple/pair/array. by Eric Fiselier · 9 years ago
- 8a597d6 [libcxx] [test] Add LIBCPP_ASSERT_NOEXCEPT/LIBCPP_ASSERT_NOT_NOEXCEPT, remove an unused variable. by Stephan T. Lavavej · 9 years ago
- bd68825 Fix PR27374 - Remove the implicit reduced-arity-extension in tuple. by Eric Fiselier · 9 years ago
- a0d8785 [libcxx] [test] Fix MSVC warning C4244 "conversion from 'X' to 'Y', possible loss of data", part 5/7. by Stephan T. Lavavej · 9 years ago
- 84ade98 [libcxx] [test] Fix MSVC warning C4244 "conversion from 'X' to 'Y', possible loss of data", part 4/7. by Stephan T. Lavavej · 9 years ago
- fe4ca8c [libcxx] [test] D27266: Remove spurious semicolons. by Stephan T. Lavavej · 9 years ago
- 2371589 Implement LWG 2770 - Make tuple_size<T> defined for all T by Eric Fiselier · 9 years ago
- 4090583 Fix PR30979 - tuple<move_only> is constructible from move_only const& by Eric Fiselier · 9 years ago
- 0f901c7 [libcxx] [test] Replace _LIBCPP_STD_VER with TEST_STD_VER. by Stephan T. Lavavej · 9 years ago
- 1e96d53 Make make_from_tuple tests more portable. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- b10fc37 Add missing <memory> include in test by Eric Fiselier · 9 years ago
- aedcbf8 Recommit r276548 - Make pair/tuples assignment operators SFINAE properly. by Eric Fiselier · 9 years ago
- 189f88c Revert r276548 - Make pair/tuples assignment operators SFINAE properly. by Eric Fiselier · 9 years ago
- 1b3eb43 Fix MSVC unreferenced parameter warning. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- 904a5d7 Make pair/tuples assignment operators SFINAE properly. by Eric Fiselier · 9 years ago
- 1447da3 Suppress warning in make_from_tuple tests. by Eric Fiselier · 9 years ago
- 03e29a2 Implement C++17 tuple bits. Including apply and make_from_tuple. by Eric Fiselier · 9 years ago
- 4f905b8 Handle std::get<T>(...) for std::tuple<> by Eric Fiselier · 9 years ago
- f447e62 Rewrite std::get<Type>(...) helper using constexpr functions. by Eric Fiselier · 9 years ago
- 27cdf40 Cleanup SFINAE in tuple, and add tests for reference assignment by Eric Fiselier · 9 years ago
- 7b60958 Make tuple_constructible and family lazy again. by Eric Fiselier · 9 years ago
- 10b9a1b Flatten the tuple_element and __make_tuple_types implementations. by Eric Fiselier · 9 years ago
- 0923867 Fix PR27684 - std::tuple no longer accepts reference to incomplete type in some cases. by Eric Fiselier · 9 years ago
- f2f2a63 Replace __cplusplus comparisons and dialect __has_feature checks with TEST_STD_VER. by Eric Fiselier · 9 years ago
- d04c685 Remove trailing whitespace in test suite. Approved by Marshall Clow. by Eric Fiselier · 9 years ago
- 6edc12c [libcxx] Improve tests to use the UNSUPPORTED lit directive by Asiri Rathnayake · 9 years ago
- 38e229f Guard testing of tuple extensions to make tests portable by Eric Fiselier · 9 years ago
- 7626f77 Remove names of unreferenced parameters. Patch from STL@microsoft.com by Eric Fiselier · 10 years ago
- b530a25 Fix some non-standard parts of our test suite. Reported by STL by Eric Fiselier · 10 years ago
- 9795699 Make tuples constructors conditionally EXPLICIT. See N4387 by Eric Fiselier · 10 years ago
- 74cba64 Cleanup and guard tuple's constructor SFINAE. Fixes PR22806 and PR23256. by Eric Fiselier · 10 years ago
- 90fb2ba [libcxx] Remove the "reduced-arity-initialization" extension from the uses-allocator constructors by Eric Fiselier · 10 years ago
- 51b9de4 Fix type in tuple test. Sorry for the noise by Eric Fiselier · 10 years ago
- 545b886 [libcxx] LWG2485: get() should be overloaded for const tuple&&. Patch from K-Ballo. by Eric Fiselier · 10 years ago
- 65500d4 [libc++] Try and prevent evaluation of `is_default_constructible` on tuples default constructor if it is not needed. by Eric Fiselier · 11 years ago
- 2d38959 Mark more tuple tests as unsupported in C++98 && C++03 by Eric Fiselier · 11 years ago
- 0a52cd7 [libcxx] Mark most tuple tests UNSUPPORTED for c++03 and c++98. by Eric Fiselier · 11 years ago
- c281a7a Get tests running with warnings. Fix warnings in headers and tests by Eric Fiselier · 11 years ago
- 949389c We had two identical files named 'MoveOnly.h' in the test suite. Move one to support/, remove the other, and update all the tests that included them. No functionality change. by Marshall Clow · 11 years ago
- e21582e Walter Brown sent a list of tests which needed 'additional includes' to match what was in the standard. Added these includes to the tests. No changes to the library or test results. by Marshall Clow · 11 years ago
- 5a83710 Move test into test/std subdirectory. by Eric Fiselier · 11 years ago