forked from boostorg/config
Fix for Solaris 12.4 compiler in C++03 mode.
This commit is contained in:
@ -86,9 +86,16 @@
|
|||||||
# define BOOST_SYMBOL_VISIBLE __global
|
# define BOOST_SYMBOL_VISIBLE __global
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __SUNPRO_CC < 0x5130
|
#if (__SUNPRO_CC < 0x5130)
|
||||||
|
// C++03 features in 12.4:
|
||||||
#define BOOST_NO_TWO_PHASE_NAME_LOOKUP
|
#define BOOST_NO_TWO_PHASE_NAME_LOOKUP
|
||||||
|
#define BOOST_NO_SFINAE_EXPR
|
||||||
#define BOOST_NO_ADL_BARRIER
|
#define BOOST_NO_ADL_BARRIER
|
||||||
|
#define BOOST_NO_CXX11_VARIADIC_MACROS
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if (__SUNPRO_CC < 0x5130) || (__cplusplus < 201100)
|
||||||
|
// C++11 only featuires in 12.4:
|
||||||
#define BOOST_NO_CXX11_AUTO_DECLARATIONS
|
#define BOOST_NO_CXX11_AUTO_DECLARATIONS
|
||||||
#define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
|
#define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
|
||||||
#define BOOST_NO_CXX11_CHAR16_T
|
#define BOOST_NO_CXX11_CHAR16_T
|
||||||
@ -109,11 +116,9 @@
|
|||||||
#define BOOST_NO_CXX11_RAW_LITERALS
|
#define BOOST_NO_CXX11_RAW_LITERALS
|
||||||
#define BOOST_NO_CXX11_RVALUE_REFERENCES
|
#define BOOST_NO_CXX11_RVALUE_REFERENCES
|
||||||
#define BOOST_NO_CXX11_SCOPED_ENUMS
|
#define BOOST_NO_CXX11_SCOPED_ENUMS
|
||||||
#define BOOST_NO_SFINAE_EXPR
|
|
||||||
#define BOOST_NO_CXX11_STATIC_ASSERT
|
#define BOOST_NO_CXX11_STATIC_ASSERT
|
||||||
#define BOOST_NO_CXX11_TEMPLATE_ALIASES
|
#define BOOST_NO_CXX11_TEMPLATE_ALIASES
|
||||||
#define BOOST_NO_CXX11_UNICODE_LITERALS
|
#define BOOST_NO_CXX11_UNICODE_LITERALS
|
||||||
#define BOOST_NO_CXX11_VARIADIC_MACROS
|
|
||||||
#define BOOST_NO_CXX11_ALIGNAS
|
#define BOOST_NO_CXX11_ALIGNAS
|
||||||
#define BOOST_NO_CXX11_TRAILING_RESULT_TYPES
|
#define BOOST_NO_CXX11_TRAILING_RESULT_TYPES
|
||||||
#define BOOST_NO_CXX11_INLINE_NAMESPACES
|
#define BOOST_NO_CXX11_INLINE_NAMESPACES
|
||||||
|
Reference in New Issue
Block a user