Eric Fiselier | 3461dbc | 2015-07-31 02:24:58 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
Eric Fiselier | b168a7c | 2019-01-06 00:37:31 +0000 | [diff] [blame] | 2 | //===------------------------------- any ----------------------------------===// |
Eric Fiselier | 3461dbc | 2015-07-31 02:24:58 +0000 | [diff] [blame] | 3 | // |
| 4 | // The LLVM Compiler Infrastructure |
| 5 | // |
Eric Fiselier | b168a7c | 2019-01-06 00:37:31 +0000 | [diff] [blame] | 6 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 7 | // Source Licenses. See LICENSE.TXT for details. |
Eric Fiselier | 3461dbc | 2015-07-31 02:24:58 +0000 | [diff] [blame] | 8 | // |
| 9 | //===----------------------------------------------------------------------===// |
Eric Fiselier | b168a7c | 2019-01-06 00:37:31 +0000 | [diff] [blame] | 10 | #ifndef _LIBCPP_EXPERIMENTAL_ANY |
| 11 | #define _LIBCPP_EXPERIMENTAL_ANY |
Eric Fiselier | 3461dbc | 2015-07-31 02:24:58 +0000 | [diff] [blame] | 12 | |
Eric Fiselier | b168a7c | 2019-01-06 00:37:31 +0000 | [diff] [blame] | 13 | #include <__config> |
| 14 | |
| 15 | #ifdef _LIBCPP_WARNING |
| 16 | _LIBCPP_WARNING("<experimental/any> has been removed. Use <any> instead.") |
| 17 | #else |
| 18 | # warning "<experimental/any> has been removed. Use <any> instead." |
| 19 | #endif |
| 20 | |
| 21 | #endif // _LIBCPP_EXPERIMENTAL_ANY |