comparison DEPENDENCIES/generic/include/boost/preprocessor/config/config.hpp @ 101:c530137014c0

Update Boost headers (1.58.0)
author Chris Cannam
date Mon, 07 Sep 2015 11:12:49 +0100
parents 2665513ce2d3
children
comparison
equal deleted inserted replaced
100:793467b5e61c 101:c530137014c0
30 # elif defined(__WAVE__) 30 # elif defined(__WAVE__)
31 # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_STRICT()) 31 # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_STRICT())
32 # elif defined(__MWERKS__) && __MWERKS__ >= 0x3200 32 # elif defined(__MWERKS__) && __MWERKS__ >= 0x3200
33 # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_STRICT()) 33 # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_STRICT())
34 # elif defined(__EDG__) || defined(__EDG_VERSION__) 34 # elif defined(__EDG__) || defined(__EDG_VERSION__)
35 # if defined(_MSC_VER) && __EDG_VERSION__ >= 308 35 # if defined(_MSC_VER) && (defined(__INTELLISENSE__) || __EDG_VERSION__ >= 308)
36 # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_MSVC()) 36 # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_MSVC())
37 # else 37 # else
38 # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_EDG() | BOOST_PP_CONFIG_STRICT()) 38 # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_EDG() | BOOST_PP_CONFIG_STRICT())
39 # endif 39 # endif
40 # elif defined(__MWERKS__) 40 # elif defined(__MWERKS__)
43 # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_DMC()) 43 # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_DMC())
44 # elif defined(__BORLANDC__) && __BORLANDC__ >= 0x581 44 # elif defined(__BORLANDC__) && __BORLANDC__ >= 0x581
45 # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_STRICT()) 45 # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_STRICT())
46 # elif defined(__BORLANDC__) || defined(__IBMC__) || defined(__IBMCPP__) || defined(__SUNPRO_CC) 46 # elif defined(__BORLANDC__) || defined(__IBMC__) || defined(__IBMCPP__) || defined(__SUNPRO_CC)
47 # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_BCC()) 47 # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_BCC())
48 # elif defined(_MSC_VER) 48 # elif defined(_MSC_VER) && !defined(__clang__)
49 # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_MSVC()) 49 # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_MSVC())
50 # else 50 # else
51 # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_STRICT()) 51 # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_STRICT())
52 # endif 52 # endif
53 # endif 53 # endif
70 # 70 #
71 # /* BOOST_PP_VARIADICS */ 71 # /* BOOST_PP_VARIADICS */
72 # 72 #
73 # if !defined BOOST_PP_VARIADICS 73 # if !defined BOOST_PP_VARIADICS
74 # /* variadic support explicitly disabled for all untested compilers */ 74 # /* variadic support explicitly disabled for all untested compilers */
75 # if defined __GCCXML__ || defined __CUDACC__ || defined __PATHSCALE__ || defined __clang__ || defined __DMC__ || defined __CODEGEARC__ || defined __BORLANDC__ || defined __MWERKS__ || defined __SUNPRO_CC || defined __HP_aCC && !defined __EDG__ || defined __MRC__ || defined __SC__ || defined __IBMCPP__ || defined __PGI 75 # if defined __GCCXML__ || defined __CUDACC__ || defined __PATHSCALE__ || defined __DMC__ || defined __CODEGEARC__ || defined __BORLANDC__ || defined __MWERKS__ || defined __SUNPRO_CC || defined __HP_aCC && !defined __EDG__ || defined __MRC__ || defined __SC__ || defined __IBMCPP__ || defined __PGI
76 # define BOOST_PP_VARIADICS 0 76 # define BOOST_PP_VARIADICS 0
77 # /* VC++ (C/C++) */ 77 # /* VC++ (C/C++) */
78 # elif defined _MSC_VER && _MSC_VER >= 1400 && !defined __EDG__ 78 # elif defined _MSC_VER && _MSC_VER >= 1400 && (!defined __EDG__ || defined(__INTELLISENSE__)) && !defined __clang__
79 # if _MSC_VER >= 1400 79 # define BOOST_PP_VARIADICS 1
80 # define BOOST_PP_VARIADICS 1 80 # define BOOST_PP_VARIADICS_MSVC 1
81 # define BOOST_PP_VARIADICS_MSVC 1
82 # else
83 # define BOOST_PP_VARIADICS 0
84 # endif
85 # /* Wave (C/C++), GCC (C++) */ 81 # /* Wave (C/C++), GCC (C++) */
86 # elif defined __WAVE__ && __WAVE_HAS_VARIADICS__ || defined __GNUC__ && __GXX_EXPERIMENTAL_CXX0X__ 82 # elif defined __WAVE__ && __WAVE_HAS_VARIADICS__ || defined __GNUC__ && __GXX_EXPERIMENTAL_CXX0X__
87 # define BOOST_PP_VARIADICS 1 83 # define BOOST_PP_VARIADICS 1
88 # /* EDG-based (C/C++), GCC (C), and unknown (C/C++) */ 84 # /* EDG-based (C/C++), GCC (C), and unknown (C/C++) */
89 # elif !defined __cplusplus && __STDC_VERSION__ >= 199901L || __cplusplus >= 201103L 85 # elif !defined __cplusplus && __STDC_VERSION__ >= 199901L || __cplusplus >= 201103L
92 # define BOOST_PP_VARIADICS 0 88 # define BOOST_PP_VARIADICS 0
93 # endif 89 # endif
94 # elif !BOOST_PP_VARIADICS + 1 < 2 90 # elif !BOOST_PP_VARIADICS + 1 < 2
95 # undef BOOST_PP_VARIADICS 91 # undef BOOST_PP_VARIADICS
96 # define BOOST_PP_VARIADICS 1 92 # define BOOST_PP_VARIADICS 1
97 # if defined _MSC_VER && _MSC_VER >= 1400 && !(defined __EDG__ || defined __GCCXML__ || defined __CUDACC__ || defined __PATHSCALE__ || defined __clang__ || defined __DMC__ || defined __CODEGEARC__ || defined __BORLANDC__ || defined __MWERKS__ || defined __SUNPRO_CC || defined __HP_aCC || defined __MRC__ || defined __SC__ || defined __IBMCPP__ || defined __PGI) 93 # if defined _MSC_VER && _MSC_VER >= 1400 && (defined(__INTELLISENSE__) || !(defined __EDG__ || defined __GCCXML__ || defined __CUDACC__ || defined __PATHSCALE__ || defined __clang__ || defined __DMC__ || defined __CODEGEARC__ || defined __BORLANDC__ || defined __MWERKS__ || defined __SUNPRO_CC || defined __HP_aCC || defined __MRC__ || defined __SC__ || defined __IBMCPP__ || defined __PGI))
98 # define BOOST_PP_VARIADICS_MSVC 1 94 # define BOOST_PP_VARIADICS_MSVC 1
99 # endif 95 # endif
100 # else 96 # else
101 # undef BOOST_PP_VARIADICS 97 # undef BOOST_PP_VARIADICS
102 # define BOOST_PP_VARIADICS 0 98 # define BOOST_PP_VARIADICS 0