Added BOOST_NO_SFINAE config macro, removed internal version from

the iterator library


[SVN r21125]
This commit is contained in:
Jaakko Järvi
2003-12-03 19:26:15 +00:00
parent 818670ad28
commit 1677adf462
6 changed files with 79 additions and 0 deletions

View File

@@ -25,6 +25,7 @@
# define BOOST_NO_CV_VOID_SPECIALIZATIONS
# define BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS
# define BOOST_NO_DEDUCED_TYPENAME
# define BOOST_NO_SFINAE
#endif
// Version 7.0 (Kylix) and below:

View File

@@ -29,6 +29,10 @@
# endif
# endif
# if __GNUC__ == 2 && __GNUC_MINOR__ <= 95
# define BOOST_NO_SFINAE
# endif
# if __GNUC__ == 2 && __GNUC_MINOR__ <= 97
# define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
# define BOOST_NO_OPERATORS_IN_NAMESPACE

View File

@@ -32,6 +32,10 @@
# define BOOST_NO_UNREACHABLE_RETURN_DETECTION
# endif
# if(__MWERKS__ <= 0x3000)
# define BOOST_NO_SFINAE
# endif
# if(__MWERKS__ <= 0x3003) // 8.x
# define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
# endif

View File

@@ -53,6 +53,7 @@
# define BOOST_NO_USING_TEMPLATE
# define BOOST_NO_SWPRINTF
# define BOOST_NO_TEMPLATE_TEMPLATES
# define BOOST_NO_SFINAE
# if (_MSC_VER > 1200)
# define BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS
# endif

68
test/boost_no_sfinae.ipp Normal file
View File

@@ -0,0 +1,68 @@
// (C) Copyright Eric Friedman 2003.
// Some modifications by Jeremiah Willcock and Jaakko J<>rvi.
// Use, modification, and distribution is subject to the Boost Software
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
// MACRO: BOOST_NO_SFINAE
// TITLE: SFINAE (substitution failure is not an error)
// DESCRIPTION: SFINAE not supported.
namespace boost_no_sfinae {
namespace f1_a {
template <typename T>
int f1(T*, float)
{
return 0;
}
} using f1_a::f1;
namespace f1_b {
template <typename T>
int f1(T*, int, typename T::int_* = 0)
{
return 1;
}
} using f1_b::f1;
namespace f2_a {
template <typename T>
int f2(T*, float)
{
return 2;
}
} using f2_a::f2;
namespace f2_b {
template <typename T>
typename T::int_ f2(T*, int)
{
return 3;
}
} using f2_b::f2;
struct test_t
{
typedef int int_;
};
struct test2_t {};
int test()
{
test_t* t = 0;
test2_t* t2 = 0;
bool correct =
(f1(t, 0) == 1) &&
(f1(t2, 0) == 0) &&
(f2(t, 0) == 3) &&
(f2(t2, 0) == 2);
return !correct;
}
}

View File

@@ -909,6 +909,7 @@ void print_boost_macros()
PRINT_MACRO(BOOST_NO_OPERATORS_IN_NAMESPACE);
PRINT_MACRO(BOOST_NO_POINTER_TO_MEMBER_CONST);
PRINT_MACRO(BOOST_NO_PRIVATE_IN_AGGREGATE);
PRINT_MACRO(BOOST_NO_SFINAE);
PRINT_MACRO(BOOST_NO_SLIST);
PRINT_MACRO(BOOST_NO_STD_ALLOCATOR);
PRINT_MACRO(BOOST_NO_STD_DISTANCE);