Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===----------------------------------------------------------------------===// |
| 3 | // |
| 4 | // ÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊThe LLVM Compiler Infrastructure |
| 5 | // |
| 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 | |
| 20 | template <class _Tp> class tuple_size; |
| 21 | template <size_t _Ip, class _Tp> class tuple_element; |
| 22 | |
| 23 | _LIBCPP_END_NAMESPACE_STD |
| 24 | |
| 25 | #endif |