blob: f64a3a90cd1252184c4236c9ff403747c6de0e48 [file] [log] [blame]
Marshall Clow48472872014-07-08 22:38:11 +00001// -*- 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
Eric Fiselier47b9a9a2015-02-10 17:32:49 +000016#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
17#pragma GCC system_header
18#endif
19
Marshall Clow48472872014-07-08 22:38:11 +000020#define _LIBCPP_BEGIN_NAMESPACE_EXPERIMENTAL namespace std { namespace experimental {
21#define _LIBCPP_END_NAMESPACE_EXPERIMENTAL } }
22#define _VSTD_EXPERIMENTAL std::experimental
23
24#define _LIBCPP_BEGIN_NAMESPACE_LFTS _LIBCPP_BEGIN_NAMESPACE_EXPERIMENTAL inline namespace fundamentals_v1 {
25#define _LIBCPP_END_NAMESPACE_LFTS } } }
26#define _VSTD_LFTS _VSTD_EXPERIMENTAL::fundamentals_v1
27
Eric Fiselier665613f2015-02-02 21:05:47 +000028#define _LIBCPP_BEGIN_NAMESPACE_CHRONO_LFTS _LIBCPP_BEGIN_NAMESPACE_STD \
29 namespace chrono { namespace experimental { inline namespace fundamentals_v1 {
30#define _LIBCPP_END_NAMESPACE_CHRONO_LFTS _LIBCPP_END_NAMESPACE_STD } } }
31
Marshall Clow48472872014-07-08 22:38:11 +000032#endif