vacpp.hpp
Go to the documentation of this file.
00001 //  (C) Copyright John Maddock 2001 - 2003. 
00002 //  (C) Copyright Toon Knapen 2001 - 2003. 
00003 //  (C) Copyright Lie-Quan Lee 2001. 
00004 //  (C) Copyright Markus Schoepflin 2002 - 2003. 
00005 //  (C) Copyright Beman Dawes 2002 - 2003. 
00006 //  Use, modification and distribution are subject to the 
00007 //  Boost Software License, Version 1.0. (See accompanying file 
00008 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
00009 
00010 //  See http://www.boost.org for most recent version.
00011 
00012 //  Visual Age (IBM) C++ compiler setup:
00013 
00014 #if __IBMCPP__ <= 501
00015 #  define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
00016 #  define BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS
00017 #endif
00018 
00019 #if (__IBMCPP__ <= 502) 
00020 // Actually the compiler supports inclass member initialization but it
00021 // requires a definition for the class member and it doesn't recognize
00022 // it as an integral constant expression when used as a template argument.
00023 #  define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
00024 #  define BOOST_NO_INTEGRAL_INT64_T
00025 #  define BOOST_NO_MEMBER_TEMPLATE_KEYWORD
00026 #endif
00027 
00028 #if (__IBMCPP__ <= 600) || !defined(BOOST_STRICT_CONFIG)
00029 #  define BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS
00030 #  define BOOST_NO_INITIALIZER_LISTS
00031 #endif
00032 
00033 //
00034 // On AIX thread support seems to be indicated by _THREAD_SAFE:
00035 //
00036 #ifdef _THREAD_SAFE
00037 #  define BOOST_HAS_THREADS
00038 #endif
00039 
00040 #define BOOST_COMPILER "IBM Visual Age version " BOOST_STRINGIZE(__IBMCPP__)
00041 
00042 //
00043 // versions check:
00044 // we don't support Visual age prior to version 5:
00045 #if __IBMCPP__ < 500
00046 #error "Compiler not supported or configured - please reconfigure"
00047 #endif
00048 //
00049 // last known and checked version is 600:
00050 #if (__IBMCPP__ > 600)
00051 #  if defined(BOOST_ASSERT_CONFIG)
00052 #     error "Unknown compiler version - please run the configure tests and report the results"
00053 #  endif
00054 #endif
00055 
00056 // Some versions of the compiler have issues with default arguments on partial specializations
00057 #define BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS
00058 
00059 //
00060 // C++0x features
00061 //
00062 //   See boost\config\suffix.hpp for BOOST_NO_LONG_LONG
00063 //
00064 #define BOOST_NO_CHAR16_T
00065 #define BOOST_NO_CHAR32_T
00066 #define BOOST_NO_CONSTEXPR
00067 #define BOOST_NO_DECLTYPE
00068 #define BOOST_NO_DEFAULTED_FUNCTIONS
00069 #define BOOST_NO_DELETED_FUNCTIONS
00070 #define BOOST_NO_EXPLICIT_CONVERSION_OPERATORS
00071 #define BOOST_NO_EXTERN_TEMPLATE
00072 #define BOOST_NO_RAW_LITERALS
00073 #define BOOST_NO_RVALUE_REFERENCES
00074 #define BOOST_NO_SCOPED_ENUMS
00075 #define BOOST_NO_STATIC_ASSERT
00076 #define BOOST_NO_UNICODE_LITERALS
00077 #define BOOST_NO_VARIADIC_TEMPLATES
00078 #define BOOST_NO_AUTO_DECLARATIONS
00079 #define BOOST_NO_AUTO_MULTIDECLARATIONS
00080 
00081 
00082 


appl
Author(s): petercai
autogenerated on Tue Jan 7 2014 11:02:29