]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/libc++/include/experimental/__config
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / libc++ / include / experimental / __config
1 // -*- C++ -*-
2 //===--------------------------- __config ---------------------------------===//
3 //
4 //                     The LLVM Compiler Infrastructure
5 //
6 // This file is dual licensed under the MIT and the University of Illinois Open
7 // Source Licenses. See LICENSE.TXT for details.
8 //
9 //===----------------------------------------------------------------------===//
10
11 #ifndef _LIBCPP_EXPERIMENTAL_CONFIG
12 #define _LIBCPP_EXPERIMENTAL_CONFIG
13
14 #include <__config>
15
16 #define _LIBCPP_BEGIN_NAMESPACE_EXPERIMENTAL namespace std { namespace experimental {
17 #define _LIBCPP_END_NAMESPACE_EXPERIMENTAL  } }
18 #define _VSTD_EXPERIMENTAL std::experimental
19
20 #define _LIBCPP_BEGIN_NAMESPACE_LFTS _LIBCPP_BEGIN_NAMESPACE_EXPERIMENTAL inline namespace fundamentals_v1 {
21 #define _LIBCPP_END_NAMESPACE_LFTS  } } }
22 #define _VSTD_LFTS _VSTD_EXPERIMENTAL::fundamentals_v1
23
24 #endif