mpw.hpp
Go to the documentation of this file.
00001 //  (C) Copyright John Maddock 2001 - 2002. 
00002 //  (C) Copyright Aleksey Gurtovoy 2002. 
00003 //  Use, modification and distribution are subject to the 
00004 //  Boost Software License, Version 1.0. (See accompanying file 
00005 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
00006 
00007 //  See http://www.boost.org for most recent version.
00008 
00009 //  MPW C++ compilers setup:
00010 
00011 #   if    defined(__SC__)
00012 #     define BOOST_COMPILER "MPW SCpp version " BOOST_STRINGIZE(__SC__)
00013 #   elif defined(__MRC__)
00014 #     define BOOST_COMPILER "MPW MrCpp version " BOOST_STRINGIZE(__MRC__)
00015 #   else
00016 #     error "Using MPW compiler configuration by mistake.  Please update."
00017 #   endif
00018 
00019 //
00020 // MPW 8.90:
00021 //
00022 #if (MPW_CPLUS <= 0x890) || !defined(BOOST_STRICT_CONFIG)
00023 #  define BOOST_NO_CV_SPECIALIZATIONS
00024 #  define BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
00025 #  define BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
00026 #  define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
00027 #  define BOOST_NO_INTRINSIC_WCHAR_T
00028 #  define BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
00029 #  define BOOST_NO_USING_TEMPLATE
00030 
00031 #  define BOOST_NO_CWCHAR
00032 #  define BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS
00033 
00034 #  define BOOST_NO_STD_ALLOCATOR /* actually a bug with const reference overloading */
00035 
00036 #  define BOOST_NO_INITIALIZER_LISTS
00037 #endif
00038 
00039 //
00040 // C++0x features
00041 //
00042 //   See boost\config\suffix.hpp for BOOST_NO_LONG_LONG
00043 //
00044 #define BOOST_NO_CHAR16_T
00045 #define BOOST_NO_CHAR32_T
00046 #define BOOST_NO_CONSTEXPR
00047 #define BOOST_NO_DECLTYPE
00048 #define BOOST_NO_DEFAULTED_FUNCTIONS
00049 #define BOOST_NO_DELETED_FUNCTIONS
00050 #define BOOST_NO_EXPLICIT_CONVERSION_OPERATORS
00051 #define BOOST_NO_EXTERN_TEMPLATE
00052 #define BOOST_NO_RAW_LITERALS
00053 #define BOOST_NO_RVALUE_REFERENCES
00054 #define BOOST_NO_SCOPED_ENUMS
00055 #define BOOST_NO_STATIC_ASSERT
00056 #define BOOST_NO_UNICODE_LITERALS
00057 #define BOOST_NO_VARIADIC_TEMPLATES
00058 #define BOOST_NO_AUTO_DECLARATIONS
00059 #define BOOST_NO_AUTO_MULTIDECLARATIONS
00060 
00061 //
00062 // versions check:
00063 // we don't support MPW prior to version 8.9:
00064 #if MPW_CPLUS < 0x890
00065 #  error "Compiler not supported or configured - please reconfigure"
00066 #endif
00067 //
00068 // last known and checked version is 0x890:
00069 #if (MPW_CPLUS > 0x890)
00070 #  if defined(BOOST_ASSERT_CONFIG)
00071 #     error "Unknown compiler version - please run the configure tests and report the results"
00072 #  endif
00073 #endif
00074 
00075 


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