summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper
Commit message (Collapse)AuthorAgeFilesLines
* Implement C++17 tuple bits. Including apply and make_from_tuple.Eric Fiselier2016-07-183-0/+96
| | | | | | | | | | 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
* Flatten the tuple_element and __make_tuple_types implementations.Eric Fiselier2016-07-011-0/+34
| | | | | | | | | | This patch attempts to improve the QoI of std::tuples tuple_element and __make_tuple_types helpers. Previously they required O(N) instantiations, one for every element in the tuple The new implementations are O(1) after __tuple_indices<Id...> is created. llvm-svn: 274330
* Remove trailing whitespace in test suite. Approved by Marshall Clow.Eric Fiselier2016-06-012-2/+2
| | | | llvm-svn: 271435
* Guard testing of tuple extensions to make tests portableEric Fiselier2016-05-271-0/+1
| | | | llvm-svn: 271065
* [libcxx] Mark most tuple tests UNSUPPORTED for c++03 and c++98.Eric Fiselier2015-02-192-0/+4
| | | | | | | | | | | | | | Summary: No declaration for the type `tuple` is given in c++03 or c++98 modes. Mark all tests that use the actual `tuple` type as UNSUPPORTED. Reviewers: jroelofs, mclow.lists, danalbert Reviewed By: danalbert Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D5956 llvm-svn: 229808
* Move test into test/std subdirectory.Eric Fiselier2014-12-204-0/+188
llvm-svn: 224658
OpenPOWER on IntegriCloud