Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 09:44:41

0001 //  (C) Copyright John Maddock 2006.
0002 //  Use, modification and distribution are subject to the
0003 //  Boost Software License, Version 1.0. (See accompanying file
0004 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0005 
0006 //  See http://www.boost.org for most recent version.
0007 
0008 //  GCC-XML C++ compiler setup:
0009 
0010 #  if !defined(__GCCXML_GNUC__) || ((__GCCXML_GNUC__ <= 3) && (__GCCXML_GNUC_MINOR__ <= 3))
0011 #     define BOOST_NO_IS_ABSTRACT
0012 #  endif
0013 
0014 //
0015 // Threading support: Turn this on unconditionally here (except for
0016 // those platforms where we can know for sure). It will get turned off again
0017 // later if no threading API is detected.
0018 //
0019 #if !defined(__MINGW32__) && !defined(_MSC_VER) && !defined(linux) && !defined(__linux) && !defined(__linux__)
0020 # define BOOST_HAS_THREADS
0021 #endif
0022 
0023 //
0024 // gcc has "long long"
0025 //
0026 #define BOOST_HAS_LONG_LONG
0027 
0028 // C++0x features:
0029 //
0030 #  define BOOST_NO_CXX11_CONSTEXPR
0031 #  define BOOST_NO_CXX11_NULLPTR
0032 #  define BOOST_NO_CXX11_TEMPLATE_ALIASES
0033 #  define BOOST_NO_CXX11_DECLTYPE
0034 #  define BOOST_NO_CXX11_DECLTYPE_N3276
0035 #  define BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
0036 #  define BOOST_NO_CXX11_RVALUE_REFERENCES
0037 #  define BOOST_NO_CXX11_STATIC_ASSERT
0038 #  define BOOST_NO_CXX11_VARIADIC_TEMPLATES
0039 #  define BOOST_NO_CXX11_VARIADIC_MACROS
0040 #  define BOOST_NO_CXX11_AUTO_DECLARATIONS
0041 #  define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
0042 #  define BOOST_NO_CXX11_CHAR16_T
0043 #  define BOOST_NO_CXX11_CHAR32_T
0044 #  define BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
0045 #  define BOOST_NO_CXX11_DELETED_FUNCTIONS
0046 #  define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
0047 #  define BOOST_NO_CXX11_SCOPED_ENUMS
0048 #  define BOOST_NO_SFINAE_EXPR
0049 #  define BOOST_NO_CXX11_SFINAE_EXPR
0050 #  define BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
0051 #  define BOOST_NO_CXX11_LAMBDAS
0052 #  define BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS
0053 #  define BOOST_NO_CXX11_RANGE_BASED_FOR
0054 #  define BOOST_NO_CXX11_RAW_LITERALS
0055 #  define BOOST_NO_CXX11_UNICODE_LITERALS
0056 #  define BOOST_NO_CXX11_NOEXCEPT
0057 #  define BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
0058 #  define BOOST_NO_CXX11_USER_DEFINED_LITERALS
0059 #  define BOOST_NO_CXX11_ALIGNAS
0060 #  define BOOST_NO_CXX11_ALIGNOF
0061 #  define BOOST_NO_CXX11_TRAILING_RESULT_TYPES
0062 #  define BOOST_NO_CXX11_INLINE_NAMESPACES
0063 #  define BOOST_NO_CXX11_REF_QUALIFIERS
0064 #  define BOOST_NO_CXX11_FINAL
0065 #  define BOOST_NO_CXX11_OVERRIDE
0066 #  define BOOST_NO_CXX11_THREAD_LOCAL
0067 #  define BOOST_NO_CXX11_UNRESTRICTED_UNION
0068 
0069 // C++ 14:
0070 #if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304)
0071 #  define BOOST_NO_CXX14_AGGREGATE_NSDMI
0072 #endif
0073 #if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304)
0074 #  define BOOST_NO_CXX14_BINARY_LITERALS
0075 #endif
0076 #if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304)
0077 #  define BOOST_NO_CXX14_CONSTEXPR
0078 #endif
0079 #if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304)
0080 #  define BOOST_NO_CXX14_DECLTYPE_AUTO
0081 #endif
0082 #if (__cplusplus < 201304) // There's no SD6 check for this....
0083 #  define BOOST_NO_CXX14_DIGIT_SEPARATORS
0084 #endif
0085 #if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304)
0086 #  define BOOST_NO_CXX14_GENERIC_LAMBDAS
0087 #endif
0088 #if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304)
0089 #  define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES
0090 #endif
0091 #if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304)
0092 #  define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION
0093 #endif
0094 #if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304)
0095 #  define BOOST_NO_CXX14_VARIABLE_TEMPLATES
0096 #endif
0097 
0098 // C++17
0099 #if !defined(__cpp_structured_bindings) || (__cpp_structured_bindings < 201606)
0100 #  define BOOST_NO_CXX17_STRUCTURED_BINDINGS
0101 #endif
0102 #if !defined(__cpp_inline_variables) || (__cpp_inline_variables < 201606)
0103 #  define BOOST_NO_CXX17_INLINE_VARIABLES
0104 #endif
0105 #if !defined(__cpp_fold_expressions) || (__cpp_fold_expressions < 201603)
0106 #  define BOOST_NO_CXX17_FOLD_EXPRESSIONS
0107 #endif
0108 #if !defined(__cpp_if_constexpr) || (__cpp_if_constexpr < 201606)
0109 #  define BOOST_NO_CXX17_IF_CONSTEXPR
0110 #endif
0111 #if !defined(__cpp_nontype_template_parameter_auto) || (__cpp_nontype_template_parameter_auto < 201606)
0112 #  define BOOST_NO_CXX17_AUTO_NONTYPE_TEMPLATE_PARAMS
0113 #endif
0114 
0115 #define BOOST_COMPILER "GCC-XML C++ version " __GCCXML__