blob: d72aedb54a653c3daf25977cfb025a524340b03c [file] [log] [blame]
Howard Hinnant3e519522010-05-11 19:42:16 +00001// -*- C++ -*-
2//===----------------------------------------------------------------------===//
3//
Howard Hinnant5b08a8a2010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnant3e519522010-05-11 19:42:16 +00005//
6// This file is distributed under the University of Illinois Open Source
7// License. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP___TUPLE_03
12#define _LIBCPP___TUPLE_03
13
14#include <__config>
15
16#pragma GCC system_header
17
18_LIBCPP_BEGIN_NAMESPACE_STD
19
Howard Hinnantf5ab7032010-09-21 20:16:37 +000020template <class _Tp> class _LIBCPP_VISIBLE tuple_size;
21template <size_t _Ip, class _Tp> class _LIBCPP_VISIBLE tuple_element;
Howard Hinnant3e519522010-05-11 19:42:16 +000022
23_LIBCPP_END_NAMESPACE_STD
24
Howard Hinnantb3371f62010-08-22 00:02:43 +000025#endif // _LIBCPP___TUPLE_03