blob: 774198be3f1ea0018cedf181b45f4754ec1fc481 [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
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
Eric Fiselier665613f2015-02-02 21:05:47 +000024#define _LIBCPP_BEGIN_NAMESPACE_CHRONO_LFTS _LIBCPP_BEGIN_NAMESPACE_STD \
25 namespace chrono { namespace experimental { inline namespace fundamentals_v1 {
26#define _LIBCPP_END_NAMESPACE_CHRONO_LFTS _LIBCPP_END_NAMESPACE_STD } } }
27
Marshall Clow48472872014-07-08 22:38:11 +000028#endif