Sprout/sprout/config/stdlib/libcpp.hpp

30 lines
1 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2016-02-25 09:48:28 +00:00
Copyright (c) 2011-2016 Bolero MURAKAMI
2013-08-08 09:54:33 +00:00
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
#ifndef SPROUT_CONFIG_STDLIB_LIBCPP_HPP
#define SPROUT_CONFIG_STDLIB_LIBCPP_HPP
#ifdef _LIBCPP_HAS_NO_VARIADICS
# define SPROUT_NO_CXX11_HDR_TUPLE
#endif
#define SPROUT_NO_CXX11_HDR_CHRONO
#define SPROUT_NO_CXX11_HDR_FUTURE
#define SPROUT_NO_CXX11_HDR_TYPE_TRAITS
#define SPROUT_NO_CXX11_ATOMIC_SMART_PTR
#define SPROUT_NO_CXX11_HDR_ATOMIC
#include <utility>
2013-08-06 15:15:09 +00:00
#if defined(_LIBCPP_VERSION) && (_LIBCPP_VERSION <= 1001)
# define SPROUT_NO_CXX11_CHAR_TRAITS
2013-08-06 15:15:09 +00:00
# define SPROUT_NO_CXX11_NUMERIC_LIMITS
#endif
2013-08-23 13:38:40 +00:00
#define SPROUT_NO_CXX14_INITIALIZER_LIST
#endif // #ifndef SPROUT_CONFIG_STDLIB_LIBCPP_HPP