blob: 605d84df1ea48b8c4fc76da57876096f6c1ac70f [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//
Howard Hinnant412dbeb2010-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 Hinnant3e519522010-05-11 19:42:16 +00008//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP___TUPLE_03
12#define _LIBCPP___TUPLE_03
13
14#include <__config>
15
Howard Hinnant073458b2011-10-17 20:05:10 +000016#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnant3e519522010-05-11 19:42:16 +000017#pragma GCC system_header
Howard Hinnant073458b2011-10-17 20:05:10 +000018#endif
Howard Hinnant3e519522010-05-11 19:42:16 +000019
20_LIBCPP_BEGIN_NAMESPACE_STD
21
Howard Hinnant6e412562013-03-06 23:30:19 +000022template <class _Tp> class _LIBCPP_TYPE_VIS tuple_size;
23template <size_t _Ip, class _Tp> class _LIBCPP_TYPE_VIS tuple_element;
Howard Hinnant3e519522010-05-11 19:42:16 +000024
25_LIBCPP_END_NAMESPACE_STD
26
Howard Hinnantb3371f62010-08-22 00:02:43 +000027#endif // _LIBCPP___TUPLE_03