forked from boostorg/config
config.hpp:
- Removed BOOST_NO_DEPENDENT_BASE_LOOKUP - Removed BOOST_WEAK_CONVERSION_OPERATORS [SVN r10489]
This commit is contained in:
@ -156,9 +156,6 @@
|
|||||||
// void bar(int);
|
// void bar(int);
|
||||||
// f(&bar); // should choose #2.
|
// f(&bar); // should choose #2.
|
||||||
|
|
||||||
// BOOST_NO_DEPENDENT_BASE_LOOKUP: The compiler fails to lookup members
|
|
||||||
// in dependent base classes properly.
|
|
||||||
|
|
||||||
// BOOST_NO_DEPENDENT_NESTED_DERIVATIONS: The compiler fails to compile
|
// BOOST_NO_DEPENDENT_NESTED_DERIVATIONS: The compiler fails to compile
|
||||||
// a nested class that has a dependent base class:
|
// a nested class that has a dependent base class:
|
||||||
// template<typename T>
|
// template<typename T>
|
||||||
@ -167,9 +164,6 @@
|
|||||||
// struct bar : public T, public U {};
|
// struct bar : public T, public U {};
|
||||||
// };
|
// };
|
||||||
|
|
||||||
// BOOST_WEAK_CONVERSION_OPERATORS: The compiler fails to consider all
|
|
||||||
// correct possibilities when applying user-defined conversions.
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Compiler Control or Information Macros ----------------------------------//
|
// Compiler Control or Information Macros ----------------------------------//
|
||||||
//
|
//
|
||||||
@ -245,12 +239,6 @@
|
|||||||
|
|
||||||
// Edison Design Group front-ends
|
// Edison Design Group front-ends
|
||||||
# if defined(__EDG_VERSION__)
|
# if defined(__EDG_VERSION__)
|
||||||
|
|
||||||
# if __EDG_VERSION__ <= 238
|
|
||||||
// SGI MIPSpro 7.3 uses the EDG 2.38 front-end.
|
|
||||||
# define BOOST_NO_DEPENDENT_BASE_LOOKUP
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# if __EDG_VERSION__ <= 241
|
# if __EDG_VERSION__ <= 241
|
||||||
# define BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
|
# define BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
|
||||||
# endif
|
# endif
|
||||||
@ -269,9 +257,7 @@
|
|||||||
// pull in standard library version:
|
// pull in standard library version:
|
||||||
# include <memory>
|
# include <memory>
|
||||||
# if __BORLANDC__ <= 0x0551
|
# if __BORLANDC__ <= 0x0551
|
||||||
# define BOOST_NO_DEPENDENT_BASE_LOOKUP
|
|
||||||
# define BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
|
# define BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
|
||||||
# define BOOST_WEAK_CONVERSION_OPERATORS
|
|
||||||
# define BOOST_NO_INTEGRAL_INT64_T
|
# define BOOST_NO_INTEGRAL_INT64_T
|
||||||
# define BOOST_NO_PRIVATE_IN_AGGREGATE
|
# define BOOST_NO_PRIVATE_IN_AGGREGATE
|
||||||
# endif
|
# endif
|
||||||
|
Reference in New Issue
Block a user