Eric Fiselier | 503fab4 | 2015-03-17 18:28:14 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===----------------------------- tuple ----------------------------------===// |
| 3 | // |
Chandler Carruth | d201210 | 2019-01-19 10:56:40 +0000 | [diff] [blame] | 4 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 5 | // See https://llvm.org/LICENSE.txt for license information. |
| 6 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Eric Fiselier | 503fab4 | 2015-03-17 18:28:14 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
Eric Fiselier | 5fe184c | 2019-01-06 00:37:31 +0000 | [diff] [blame] | 9 | #ifndef _LIBCPP_EXPERIMENTAL_TUPLE |
| 10 | #define _LIBCPP_EXPERIMENTAL_TUPLE |
Eric Fiselier | 503fab4 | 2015-03-17 18:28:14 +0000 | [diff] [blame] | 11 | |
Eric Fiselier | 5fe184c | 2019-01-06 00:37:31 +0000 | [diff] [blame] | 12 | #include <__config> |
| 13 | |
| 14 | #ifdef _LIBCPP_WARNING |
| 15 | _LIBCPP_WARNING("<experimental/tuple> has been removed. Use <tuple> instead.") |
| 16 | #else |
| 17 | # warning "<experimental/tuple> has been removed. Use <tuple> instead." |
| 18 | #endif |
| 19 | |
| 20 | #endif // _LIBCPP_EXPERIMENTAL_TUPLE |