diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2018-02-06 23:13:48 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2018-02-06 23:13:48 +0000 |
commit | a3d37f071697771071addf2d9f2decad923de3ad (patch) | |
tree | f6111247cc56a4536b50590840bde12e16bf3d8b /libcxx/test/std/experimental/utilities/tuple/header.tuple.synop | |
parent | 98f8bba283969d51aba53018a0a1f31838006a58 (diff) | |
download | bcm5719-llvm-a3d37f071697771071addf2d9f2decad923de3ad.tar.gz bcm5719-llvm-a3d37f071697771071addf2d9f2decad923de3ad.zip |
Remove more of the std::experimental bits that are now in std::. All the _v type aliases, conjunction/disjunction, apply, etc. See https://libcxx.llvm.org/TS_deprecation.html
llvm-svn: 324423
Diffstat (limited to 'libcxx/test/std/experimental/utilities/tuple/header.tuple.synop')
-rw-r--r-- | libcxx/test/std/experimental/utilities/tuple/header.tuple.synop/includes.pass.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/libcxx/test/std/experimental/utilities/tuple/header.tuple.synop/includes.pass.cpp b/libcxx/test/std/experimental/utilities/tuple/header.tuple.synop/includes.pass.cpp deleted file mode 100644 index 5cfb15e3df2..00000000000 --- a/libcxx/test/std/experimental/utilities/tuple/header.tuple.synop/includes.pass.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is dual licensed under the MIT and the University of Illinois Open -// Source Licenses. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: c++98, c++03, c++11 - -// <experimental/tuple> - -#include <experimental/tuple> - -int main() -{ - std::tuple<int> x(1); - (void)x; -} |