Files
libcxx/test/std/utilities/tuple/tuple.tuple
Eric Fiselier cc57a78190 Fix return type of std::tuple_cat.
When the arguments to tuple cat were const, the const was incorrectly
propagated into the type of the resulting tuple. For example:

const std::tuple<int> t(42);
auto r = std::tuple_cat(t, t);
// Incorrect! should be std::tuple<int, int>.
static_assert(is_same_v<decltype(r), std::tuple<const int, const int>>);

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@359255 91177308-0d34-0410-b5e6-96231b3b80d8
2019-04-26 01:02:18 +00:00
..
2019-02-04 20:31:13 +00:00
2019-02-04 20:31:13 +00:00
2019-02-04 20:31:13 +00:00
2019-02-04 20:31:13 +00:00
2019-02-04 20:31:13 +00:00