1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

add compiler-config: SPROUT_NO_CXX14_CONSTEXPR

This commit is contained in:
bolero-MURAKAMI 2013-06-29 13:27:11 +09:00
parent a786a7ccb1
commit 05a1ebfa85
20 changed files with 229 additions and 188 deletions

View file

@ -1,14 +1,16 @@
#ifndef SPROUT_CONFIG_COMPILER_BORLAND_HPP
#define SPROUT_CONFIG_COMPILER_BORLAND_HPP
#define SPROUT_NO_CONSTEXPR
#define SPROUT_NO_DEFAULTED_FUNCTIONS
#define SPROUT_NO_DELETED_FUNCTIONS
#define SPROUT_NO_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_NOEXCEPT
#define SPROUT_NO_TEMPLATE_ALIASES
#define SPROUT_NO_USER_DEFINED_LITERALS
#define SPROUT_NO_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_UNICODE_LITERALS
#define SPROUT_NO_CXX11_CONSTEXPR
#define SPROUT_NO_CXX11_DEFAULTED_FUNCTIONS
#define SPROUT_NO_CXX11_DELETED_FUNCTIONS
#define SPROUT_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_CXX11_NOEXCEPT
#define SPROUT_NO_CXX11_TEMPLATE_ALIASES
#define SPROUT_NO_CXX11_USER_DEFINED_LITERALS
#define SPROUT_NO_CXX11_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_CXX11_UNICODE_LITERALS
#define SPROUT_NO_CXX14_CONSTEXPR
#endif // #ifndef SPROUT_CONFIG_COMPILER_BORLAND_HPP

View file

@ -2,42 +2,44 @@
#define SPROUT_CONFIG_COMPILER_CLANG_HPP
#if !__has_feature(cxx_constexpr)
# define SPROUT_NO_CONSTEXPR
# define SPROUT_NO_CXX11_CONSTEXPR
#endif
#if !__has_feature(cxx_defaulted_functions)
# define SPROUT_NO_DEFAULTED_FUNCTIONS
# define SPROUT_NO_CXX11_DEFAULTED_FUNCTIONS
#endif
#if !__has_feature(cxx_deleted_functions)
# define SPROUT_NO_DELETED_FUNCTIONS
# define SPROUT_NO_CXX11_DELETED_FUNCTIONS
#endif
#if !__has_feature(cxx_explicit_conversions)
# define SPROUT_NO_EXPLICIT_CONVERSION_OPERATORS
# define SPROUT_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
#endif
#if !__has_feature(cxx_noexcept)
# define SPROUT_NO_NOEXCEPT
# define SPROUT_NO_CXX11_NOEXCEPT
#endif
#if !__has_feature(cxx_alias_templates)
# define SPROUT_NO_TEMPLATE_ALIASES
# define SPROUT_NO_CXX11_TEMPLATE_ALIASES
#endif
#if !__has_feature(cxx_user_literals)
# define SPROUT_NO_USER_DEFINED_LITERALS
# define SPROUT_NO_CXX11_USER_DEFINED_LITERALS
#endif
#if !__has_feature(cxx_delegating_constructors)
# define SPROUT_NO_DELEGATING_CONSTRUCTORS
# define SPROUT_NO_CXX11_DELEGATING_CONSTRUCTORS
#endif
#if !__has_feature(cxx_unicode_literals)
# define SPROUT_NO_UNICODE_LITERALS
# define SPROUT_NO_CXX11_UNICODE_LITERALS
#endif
#if !defined(SPROUT_NO_CONSTEXPR)
#define SPROUT_NO_CXX14_CONSTEXPR
#if !defined(SPROUT_NO_CXX11_CONSTEXPR)
# define SPROUT_WORKAROUND_NOT_TERMINATE_RECURSIVE_CONSTEXPR_FUNCTION_TEMPLATE
#endif

View file

@ -1,14 +1,16 @@
#ifndef SPROUT_CONFIG_COMPILER_CODEGEAR_HPP
#define SPROUT_CONFIG_COMPILER_CODEGEAR_HPP
#define SPROUT_NO_CONSTEXPR
#define SPROUT_NO_DEFAULTED_FUNCTIONS
#define SPROUT_NO_DELETED_FUNCTIONS
#define SPROUT_NO_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_NOEXCEPT
#define SPROUT_NO_TEMPLATE_ALIASES
#define SPROUT_NO_USER_DEFINED_LITERALS
#define SPROUT_NO_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_UNICODE_LITERALS
#define SPROUT_NO_CXX11_CONSTEXPR
#define SPROUT_NO_CXX11_DEFAULTED_FUNCTIONS
#define SPROUT_NO_CXX11_DELETED_FUNCTIONS
#define SPROUT_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_CXX11_NOEXCEPT
#define SPROUT_NO_CXX11_TEMPLATE_ALIASES
#define SPROUT_NO_CXX11_USER_DEFINED_LITERALS
#define SPROUT_NO_CXX11_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_CXX11_UNICODE_LITERALS
#define SPROUT_NO_CXX14_CONSTEXPR
#endif // #ifndef SPROUT_CONFIG_COMPILER_CODEGEAR_HPP

View file

@ -1,14 +1,16 @@
#ifndef SPROUT_CONFIG_COMPILER_COMMON_EDG_HPP
#define SPROUT_CONFIG_COMPILER_COMMON_EDG_HPP
#define SPROUT_NO_CONSTEXPR
#define SPROUT_NO_DEFAULTED_FUNCTIONS
#define SPROUT_NO_DELETED_FUNCTIONS
#define SPROUT_NO_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_NOEXCEPT
#define SPROUT_NO_TEMPLATE_ALIASES
#define SPROUT_NO_USER_DEFINED_LITERALS
#define SPROUT_NO_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_UNICODE_LITERALS
#define SPROUT_NO_CXX11_CONSTEXPR
#define SPROUT_NO_CXX11_DEFAULTED_FUNCTIONS
#define SPROUT_NO_CXX11_DELETED_FUNCTIONS
#define SPROUT_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_CXX11_NOEXCEPT
#define SPROUT_NO_CXX11_TEMPLATE_ALIASES
#define SPROUT_NO_CXX11_USER_DEFINED_LITERALS
#define SPROUT_NO_CXX11_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_CXX11_UNICODE_LITERALS
#define SPROUT_NO_CXX14_CONSTEXPR
#endif // #ifndef SPROUT_CONFIG_COMPILER_COMMON_EDG_HPP

View file

@ -1,14 +1,16 @@
#ifndef SPROUT_CONFIG_COMPILER_DIGITALMARS_HPP
#define SPROUT_CONFIG_COMPILER_DIGITALMARS_HPP
#define SPROUT_NO_CONSTEXPR
#define SPROUT_NO_DEFAULTED_FUNCTIONS
#define SPROUT_NO_DELETED_FUNCTIONS
#define SPROUT_NO_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_NOEXCEPT
#define SPROUT_NO_TEMPLATE_ALIASES
#define SPROUT_NO_USER_DEFINED_LITERALS
#define SPROUT_NO_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_UNICODE_LITERALS
#define SPROUT_NO_CXX11_CONSTEXPR
#define SPROUT_NO_CXX11_DEFAULTED_FUNCTIONS
#define SPROUT_NO_CXX11_DELETED_FUNCTIONS
#define SPROUT_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_CXX11_NOEXCEPT
#define SPROUT_NO_CXX11_TEMPLATE_ALIASES
#define SPROUT_NO_CXX11_USER_DEFINED_LITERALS
#define SPROUT_NO_CXX11_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_CXX11_UNICODE_LITERALS
#define SPROUT_NO_CXX14_CONSTEXPR
#endif // #ifndef SPROUT_CONFIG_COMPILER_DIGITALMARS_HPP

View file

@ -2,39 +2,39 @@
#define SPROUT_CONFIG_COMPILER_GCC_HPP
#if (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 6) || !defined(__GXX_EXPERIMENTAL_CXX0X__))
# define SPROUT_NO_CONSTEXPR
# define SPROUT_NO_CXX11_CONSTEXPR
#endif
#if (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 4) || !defined(__GXX_EXPERIMENTAL_CXX0X__))
# define SPROUT_NO_DEFAULTED_FUNCTIONS
# define SPROUT_NO_CXX11_DEFAULTED_FUNCTIONS
#endif
#if (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 4) || !defined(__GXX_EXPERIMENTAL_CXX0X__))
# define SPROUT_NO_DELETED_FUNCTIONS
# define SPROUT_NO_CXX11_DELETED_FUNCTIONS
#endif
#if (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 5) || !defined(__GXX_EXPERIMENTAL_CXX0X__))
# define SPROUT_NO_EXPLICIT_CONVERSION_OPERATORS
# define SPROUT_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
#endif
#if (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 6) || !defined(__GXX_EXPERIMENTAL_CXX0X__))
# define SPROUT_NO_NOEXCEPT
# define SPROUT_NO_CXX11_NOEXCEPT
#endif
#if (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 7) || !defined(__GXX_EXPERIMENTAL_CXX0X__))
# define SPROUT_NO_TEMPLATE_ALIASES
# define SPROUT_NO_CXX11_TEMPLATE_ALIASES
#endif
#if (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 7) || !defined(__GXX_EXPERIMENTAL_CXX0X__))
# define SPROUT_NO_USER_DEFINED_LITERALS
# define SPROUT_NO_CXX11_USER_DEFINED_LITERALS
#endif
#if (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 7) || !defined(__GXX_EXPERIMENTAL_CXX0X__))
# define SPROUT_NO_DELEGATING_CONSTRUCTORS
# define SPROUT_NO_CXX11_DELEGATING_CONSTRUCTORS
#endif
#if (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 5) || !defined(__GXX_EXPERIMENTAL_CXX0X__))
# define SPROUT_NO_UNICODE_LITERALS
# define SPROUT_NO_CXX11_UNICODE_LITERALS
#endif
#if ((__GNUC__ >= 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) && defined(__GXX_EXPERIMENTAL_CXX0X__))
@ -45,4 +45,6 @@
# define SPROUT_HAS_CONSTEXPR_BIT_OPERATION
#endif
#define SPROUT_NO_CXX14_CONSTEXPR
#endif // #ifndef SPROUT_CONFIG_COMPILER_GCC_HPP

View file

@ -1,14 +1,16 @@
#ifndef SPROUT_CONFIG_COMPILER_GCC_XML_HPP
#define SPROUT_CONFIG_COMPILER_GCC_XML_HPP
#define SPROUT_NO_CONSTEXPR
#define SPROUT_NO_DEFAULTED_FUNCTIONS
#define SPROUT_NO_DELETED_FUNCTIONS
#define SPROUT_NO_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_NOEXCEPT
#define SPROUT_NO_TEMPLATE_ALIASES
#define SPROUT_NO_USER_DEFINED_LITERALS
#define SPROUT_NO_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_UNICODE_LITERALS
#define SPROUT_NO_CXX11_CONSTEXPR
#define SPROUT_NO_CXX11_DEFAULTED_FUNCTIONS
#define SPROUT_NO_CXX11_DELETED_FUNCTIONS
#define SPROUT_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_CXX11_NOEXCEPT
#define SPROUT_NO_CXX11_TEMPLATE_ALIASES
#define SPROUT_NO_CXX11_USER_DEFINED_LITERALS
#define SPROUT_NO_CXX11_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_CXX11_UNICODE_LITERALS
#define SPROUT_NO_CXX14_CONSTEXPR
#endif // #ifndef SPROUT_CONFIG_COMPILER_GCC_XML_HPP

View file

@ -1,31 +1,31 @@
#ifndef SPROUT_CONFIG_COMPILER_HAS_FUTURE_HPP
#define SPROUT_CONFIG_COMPILER_HAS_FUTURE_HPP
#ifndef SPROUT_NO_CONSTEXPR
#ifndef SPROUT_NO_CXX11_CONSTEXPR
# define SPROUT_HAS_CONSTEXPR
#endif
#ifndef SPROUT_NO_DEFAULTED_FUNCTIONS
#ifndef SPROUT_NO_CXX11_DEFAULTED_FUNCTIONS
# define SPROUT_HAS_DEFAULTED_FUNCTIONS
#endif
#ifndef SPROUT_NO_DELETED_FUNCTIONS
#ifndef SPROUT_NO_CXX11_DELETED_FUNCTIONS
# define SPROUT_HAS_DELETED_FUNCTIONS
#endif
#ifndef SPROUT_NO_EXPLICIT_CONVERSION_OPERATORS
#ifndef SPROUT_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
# define SPROUT_HAS_EXPLICIT_CONVERSION_OPERATORS
#endif
#ifndef SPROUT_NO_NOEXCEPT
#ifndef SPROUT_NO_CXX11_NOEXCEPT
# define SPROUT_HAS_NOEXCEPT
#endif
#ifndef SPROUT_NO_TEMPLATE_ALIASES
#ifndef SPROUT_NO_CXX11_TEMPLATE_ALIASES
# define SPROUT_HAS_TEMPLATE_ALIASES
#endif
#ifndef SPROUT_NO_USER_DEFINED_LITERALS
#ifndef SPROUT_NO_CXX11_USER_DEFINED_LITERALS
# define SPROUT_HAS_USER_DEFINED_LITERALS
#endif
#ifndef SPROUT_NO_DELEGATING_CONSTRUCTORS
#ifndef SPROUT_NO_CXX11_DELEGATING_CONSTRUCTORS
# define SPROUT_HAS_DELEGATING_CONSTRUCTORS
#endif
#ifndef SPROUT_NO_UNICODE_LITERALS
#ifndef SPROUT_NO_CXX11_UNICODE_LITERALS
# define SPROUT_HAS_UNICODE_LITERALS
#endif

View file

@ -1,14 +1,16 @@
#ifndef SPROUT_CONFIG_COMPILER_METROWERKS_HPP
#define SPROUT_CONFIG_COMPILER_METROWERKS_HPP
#define SPROUT_NO_CONSTEXPR
#define SPROUT_NO_DEFAULTED_FUNCTIONS
#define SPROUT_NO_DELETED_FUNCTIONS
#define SPROUT_NO_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_NOEXCEPT
#define SPROUT_NO_TEMPLATE_ALIASES
#define SPROUT_NO_USER_DEFINED_LITERALS
#define SPROUT_NO_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_UNICODE_LITERALS
#define SPROUT_NO_CXX11_CONSTEXPR
#define SPROUT_NO_CXX11_DEFAULTED_FUNCTIONS
#define SPROUT_NO_CXX11_DELETED_FUNCTIONS
#define SPROUT_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_CXX11_NOEXCEPT
#define SPROUT_NO_CXX11_TEMPLATE_ALIASES
#define SPROUT_NO_CXX11_USER_DEFINED_LITERALS
#define SPROUT_NO_CXX11_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_CXX11_UNICODE_LITERALS
#define SPROUT_NO_CXX14_CONSTEXPR
#endif // #ifndef SPROUT_CONFIG_COMPILER_METROWERKS_HPP

View file

@ -1,14 +1,16 @@
#ifndef SPROUT_CONFIG_COMPILER_MPW_HPP
#define SPROUT_CONFIG_COMPILER_MPW_HPP
#define SPROUT_NO_CONSTEXPR
#define SPROUT_NO_DEFAULTED_FUNCTIONS
#define SPROUT_NO_DELETED_FUNCTIONS
#define SPROUT_NO_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_NOEXCEPT
#define SPROUT_NO_TEMPLATE_ALIASES
#define SPROUT_NO_USER_DEFINED_LITERALS
#define SPROUT_NO_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_UNICODE_LITERALS
#define SPROUT_NO_CXX11_CONSTEXPR
#define SPROUT_NO_CXX11_DEFAULTED_FUNCTIONS
#define SPROUT_NO_CXX11_DELETED_FUNCTIONS
#define SPROUT_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_CXX11_NOEXCEPT
#define SPROUT_NO_CXX11_TEMPLATE_ALIASES
#define SPROUT_NO_CXX11_USER_DEFINED_LITERALS
#define SPROUT_NO_CXX11_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_CXX11_UNICODE_LITERALS
#define SPROUT_NO_CXX14_CONSTEXPR
#endif // #ifndef SPROUT_CONFIG_COMPILER_MPW_HPP

View file

@ -1,32 +0,0 @@
#ifndef SPROUT_CONFIG_COMPILER_NO_CXX11_FUTURE_HPP
#define SPROUT_CONFIG_COMPILER_NO_CXX11_FUTURE_HPP
#ifdef SPROUT_NO_CONSTEXPR
# define SPROUT_NO_CXX11_CONSTEXPR
#endif
#ifdef SPROUT_NO_DEFAULTED_FUNCTIONS
# define SPROUT_NO_CXX11_DEFAULTED_FUNCTIONS
#endif
#ifdef SPROUT_NO_DELETED_FUNCTIONS
# define SPROUT_NO_CXX11_DELETED_FUNCTIONS
#endif
#ifdef SPROUT_NO_EXPLICIT_CONVERSION_OPERATORS
# define SPROUT_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
#endif
#ifdef SPROUT_NO_NOEXCEPT
# define SPROUT_NO_CXX11_NOEXCEPT
#endif
#ifdef SPROUT_NO_TEMPLATE_ALIASES
# define SPROUT_NO_CXX11_TEMPLATE_ALIASES
#endif
#ifdef SPROUT_NO_USER_DEFINED_LITERALS
# define SPROUT_NO_CXX11_USER_DEFINED_LITERALS
#endif
#ifdef SPROUT_NO_DELEGATING_CONSTRUCTORS
# define SPROUT_NO_CXX11_DELEGATING_CONSTRUCTORS
#endif
#ifdef SPROUT_NO_UNICODE_LITERALS
# define SPROUT_NO_CXX11_UNICODE_LITERALS
#endif
#endif // #ifndef SPROUT_CONFIG_COMPILER_NO_CXX11_FUTURE_HPP

View file

@ -0,0 +1,32 @@
#ifndef SPROUT_CONFIG_COMPILER_NO_FUTURE_HPP
#define SPROUT_CONFIG_COMPILER_NO_FUTURE_HPP
#ifdef SPROUT_NO_CXX11_CONSTEXPR
# define SPROUT_NO_CONSTEXPR
#endif
#ifdef SPROUT_NO_CXX11_DEFAULTED_FUNCTIONS
# define SPROUT_NO_DEFAULTED_FUNCTIONS
#endif
#ifdef SPROUT_NO_CXX11_DELETED_FUNCTIONS
# define SPROUT_NO_DELETED_FUNCTIONS
#endif
#ifdef SPROUT_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
# define SPROUT_NO_EXPLICIT_CONVERSION_OPERATORS
#endif
#ifdef SPROUT_NO_CXX11_NOEXCEPT
# define SPROUT_NO_NOEXCEPT
#endif
#ifdef SPROUT_NO_CXX11_TEMPLATE_ALIASES
# define SPROUT_NO_TEMPLATE_ALIASES
#endif
#ifdef SPROUT_NO_CXX11_USER_DEFINED_LITERALS
# define SPROUT_NO_USER_DEFINED_LITERALS
#endif
#ifdef SPROUT_NO_CXX11_DELEGATING_CONSTRUCTORS
# define SPROUT_NO_DELEGATING_CONSTRUCTORS
#endif
#ifdef SPROUT_NO_CXX11_UNICODE_LITERALS
# define SPROUT_NO_UNICODE_LITERALS
#endif
#endif // #ifndef SPROUT_CONFIG_COMPILER_NO_FUTURE_HPP

View file

@ -2,15 +2,17 @@
#define SPROUT_CONFIG_COMPILER_PATHSCALE_HPP
#if __PATHCC__ >= 4
# define SPROUT_NO_CONSTEXPR
# define SPROUT_NO_DEFAULTED_FUNCTIONS
# define SPROUT_NO_DELETED_FUNCTIONS
# define SPROUT_NO_EXPLICIT_CONVERSION_OPERATORS
# define SPROUT_NO_NOEXCEPT
# define SPROUT_NO_TEMPLATE_ALIASES
# define SPROUT_NO_USER_DEFINED_LITERALS
# define SPROUT_NO_DELEGATING_CONSTRUCTORS
# define SPROUT_NO_UNICODE_LITERALS
# define SPROUT_NO_CXX11_CONSTEXPR
# define SPROUT_NO_CXX11_DEFAULTED_FUNCTIONS
# define SPROUT_NO_CXX11_DELETED_FUNCTIONS
# define SPROUT_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
# define SPROUT_NO_CXX11_NOEXCEPT
# define SPROUT_NO_CXX11_TEMPLATE_ALIASES
# define SPROUT_NO_CXX11_USER_DEFINED_LITERALS
# define SPROUT_NO_CXX11_DELEGATING_CONSTRUCTORS
# define SPROUT_NO_CXX11_UNICODE_LITERALS
# define SPROUT_NO_CXX14_CONSTEXPR
#endif
#endif // #ifndef SPROUT_CONFIG_COMPILER_PATHSCALE_HPP

View file

@ -1,14 +1,16 @@
#ifndef SPROUT_CONFIG_COMPILER_PGI_HPP
#define SPROUT_CONFIG_COMPILER_PGI_HPP
#define SPROUT_NO_CONSTEXPR
#define SPROUT_NO_DEFAULTED_FUNCTIONS
#define SPROUT_NO_DELETED_FUNCTIONS
#define SPROUT_NO_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_NOEXCEPT
#define SPROUT_NO_TEMPLATE_ALIASES
#define SPROUT_NO_USER_DEFINED_LITERALS
#define SPROUT_NO_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_UNICODE_LITERALS
#define SPROUT_NO_CXX11_CONSTEXPR
#define SPROUT_NO_CXX11_DEFAULTED_FUNCTIONS
#define SPROUT_NO_CXX11_DELETED_FUNCTIONS
#define SPROUT_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_CXX11_NOEXCEPT
#define SPROUT_NO_CXX11_TEMPLATE_ALIASES
#define SPROUT_NO_CXX11_USER_DEFINED_LITERALS
#define SPROUT_NO_CXX11_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_CXX11_UNICODE_LITERALS
#define SPROUT_NO_CXX14_CONSTEXPR
#endif // #ifndef SPROUT_CONFIG_COMPILER_PGI_HPP

View file

@ -1,14 +1,16 @@
#ifndef SPROUT_CONFIG_COMPILER_SUNPRO_CC_HPP
#define SPROUT_CONFIG_COMPILER_SUNPRO_CC_HPP
#define SPROUT_NO_CONSTEXPR
#define SPROUT_NO_DEFAULTED_FUNCTIONS
#define SPROUT_NO_DELETED_FUNCTIONS
#define SPROUT_NO_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_NOEXCEPT
#define SPROUT_NO_TEMPLATE_ALIASES
#define SPROUT_NO_USER_DEFINED_LITERALS
#define SPROUT_NO_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_UNICODE_LITERALS
#define SPROUT_NO_CXX11_CONSTEXPR
#define SPROUT_NO_CXX11_DEFAULTED_FUNCTIONS
#define SPROUT_NO_CXX11_DELETED_FUNCTIONS
#define SPROUT_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_CXX11_NOEXCEPT
#define SPROUT_NO_CXX11_TEMPLATE_ALIASES
#define SPROUT_NO_CXX11_USER_DEFINED_LITERALS
#define SPROUT_NO_CXX11_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_CXX11_UNICODE_LITERALS
#define SPROUT_NO_CXX14_CONSTEXPR
#endif // #ifndef SPROUT_CONFIG_COMPILER_SUNPRO_CC_HPP

View file

@ -2,17 +2,19 @@
#define SPROUT_CONFIG_COMPILER_VACPP_HPP
#if !__IBMCPP_CONSTEXPR
# define SPROUT_NO_CONSTEXPR
# define SPROUT_NO_CXX11_CONSTEXPR
#endif
#define SPROUT_NO_DEFAULTED_FUNCTIONS
#define SPROUT_NO_DELETED_FUNCTIONS
#define SPROUT_NO_CXX11_DEFAULTED_FUNCTIONS
#define SPROUT_NO_CXX11_DELETED_FUNCTIONS
#if !__IBMCPP_EXPLICIT_CONVERSION_OPERATORS
# define SPROUT_NO_EXPLICIT_CONVERSION_OPERATORS
# define SPROUT_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
#endif
#define SPROUT_NO_NOEXCEPT
#define SPROUT_NO_TEMPLATE_ALIASES
#define SPROUT_NO_USER_DEFINED_LITERALS
#define SPROUT_NO_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_UNICODE_LITERALS
#define SPROUT_NO_CXX11_NOEXCEPT
#define SPROUT_NO_CXX11_TEMPLATE_ALIASES
#define SPROUT_NO_CXX11_USER_DEFINED_LITERALS
#define SPROUT_NO_CXX11_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_CXX11_UNICODE_LITERALS
#define SPROUT_NO_CXX14_CONSTEXPR
#endif // #ifndef SPROUT_CONFIG_COMPILER_VACPP_HPP

View file

@ -1,14 +1,16 @@
#ifndef SPROUT_CONFIG_COMPILER_VISUALC_HPP
#define SPROUT_CONFIG_COMPILER_VISUALC_HPP
#define SPROUT_NO_CONSTEXPR
#define SPROUT_NO_DEFAULTED_FUNCTIONS
#define SPROUT_NO_DELETED_FUNCTIONS
#define SPROUT_NO_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_NOEXCEPT
#define SPROUT_NO_TEMPLATE_ALIASES
#define SPROUT_NO_USER_DEFINED_LITERALS
#define SPROUT_NO_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_UNICODE_LITERALS
#define SPROUT_NO_CXX11_CONSTEXPR
#define SPROUT_NO_CXX11_DEFAULTED_FUNCTIONS
#define SPROUT_NO_CXX11_DELETED_FUNCTIONS
#define SPROUT_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
#define SPROUT_NO_CXX11_NOEXCEPT
#define SPROUT_NO_CXX11_TEMPLATE_ALIASES
#define SPROUT_NO_CXX11_USER_DEFINED_LITERALS
#define SPROUT_NO_CXX11_DELEGATING_CONSTRUCTORS
#define SPROUT_NO_CXX11_UNICODE_LITERALS
#define SPROUT_NO_CXX14_CONSTEXPR
#endif // #ifndef SPROUT_CONFIG_COMPILER_VISUALC_HPP