forked from boostorg/typeof
cw-8_x doesn't have function types
[SVN r32415]
This commit is contained in:
@ -26,6 +26,8 @@ namespace
|
||||
typedef BOOST_PP_CAT(iter, BOOST_PP_INC(n)) iter;
|
||||
};
|
||||
|
||||
#ifndef BOOST_TYPEOF_NO_FUNCTION_TYPES
|
||||
|
||||
// function references
|
||||
|
||||
template<class V, class R BOOST_PP_ENUM_TRAILING_PARAMS(n, class P)>
|
||||
@ -62,6 +64,8 @@ namespace
|
||||
typedef BOOST_PP_CAT(iter, BOOST_PP_INC(n)) iter;
|
||||
};
|
||||
|
||||
#endif//BOOST_TYPEOF_NO_FUNCTION_TYPES
|
||||
|
||||
// member functions
|
||||
|
||||
#define BOOST_TYPEOF_qualifier
|
||||
|
@ -64,6 +64,10 @@
|
||||
# endif
|
||||
# define BOOST_TYPEOF_KEYWORD __typeof__
|
||||
# endif
|
||||
# if(__MWERKS__ <= 0x3003) // 8.x
|
||||
# define BOOST_TYPEOF_NO_FUNCTION_TYPES
|
||||
# endif
|
||||
|
||||
|
||||
#elif defined(_MSC_VER)
|
||||
# if (_MSC_VER <= 1300) // 6.5, 7.0
|
||||
|
Reference in New Issue
Block a user