blob: 61049191cb2bd042abef4435bb7ffa4c5547affc [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===----------------------------------------------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00006// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00008//
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 Hinnant333f50d2010-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 Hinnantbc8d3f92010-05-11 19:42:16 +000022
23_LIBCPP_END_NAMESPACE_STD
24
Howard Hinnant324bb032010-08-22 00:02:43 +000025#endif // _LIBCPP___TUPLE_03