Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [libcxx] [test] Fix comment typos. | Stephan T. Lavavej | 2017-02-05 | 1 | -1/+1 |
| | | | | | | No functional change, no code review. llvm-svn: 294160 | ||||
* | [libcxx] [test] Add LIBCPP_ASSERT_NOEXCEPT/LIBCPP_ASSERT_NOT_NOEXCEPT, ↵ | Stephan T. Lavavej | 2016-12-09 | 2 | -7/+6 |
| | | | | | | | | | | | | | | | | | | | | | | remove an unused variable. test/support/test_macros.h For convenience/greppability, add macros for libcxx-specific static_asserts about noexceptness. (Moving the definitions of ASSERT_NOEXCEPT/ASSERT_NOT_NOEXCEPT isn't technically necessary because they're macros, but I think it's better style to define stuff before using it.) test/std/utilities/tuple/tuple.tuple/tuple.apply/apply.pass.cpp There was a completely unused `TrackedCallable obj;`. apply() isn't depicted with conditional noexcept in C++17. test/std/utilities/tuple/tuple.tuple/tuple.apply/make_from_tuple.pass.cpp Now that we have LIBCPP_ASSERT_NOEXCEPT, use it. Fixes D27622. llvm-svn: 289264 | ||||
* | Make make_from_tuple tests more portable. Patch from STL@microsoft.com | Eric Fiselier | 2016-10-23 | 1 | -4/+4 |
| | | | | llvm-svn: 284943 | ||||
* | Suppress warning in make_from_tuple tests. | Eric Fiselier | 2016-07-18 | 1 | -0/+4 |
| | | | | llvm-svn: 275748 | ||||
* | Implement C++17 tuple bits. Including apply and make_from_tuple. | Eric Fiselier | 2016-07-18 | 4 | -0/+1055 |
This patch upgrades <tuple> to be C++17 compliant by implementing: * tuple_size_v: This was forgotten when implementing the other _v traits. * std::apply: This was added via LFTS v1 in p0220r1. * std::make_from_tuple: This was added in p0209r2. llvm-svn: 275745 |