blob: 6b7f1891a62a28fa0af11162e43b102200638f80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <tuple>
// template<class... Types>
// tuple<ATypes...> pack_arguments(Types&&... t);
#include <tuple>
int main()
{
#error pack_arguments not implemented
}
|