disabled typeof emulation for cw-8_x

[SVN r33101]
This commit is contained in:
Arkadiy Vertleyb
2006-02-25 05:06:29 +00:00
parent b234bfc0e8
commit f3d8469b59

View File

@ -58,17 +58,24 @@
# endif
#elif defined(__MWERKS__)
# ifndef BOOST_TYPEOF_EMULATION
# ifndef BOOST_TYPEOF_NATIVE
# define BOOST_TYPEOF_NATIVE
# endif
# define BOOST_TYPEOF_KEYWORD __typeof__
# endif
# if(__MWERKS__ <= 0x3003) // 8.x
# define BOOST_TYPEOF_NO_FUNCTION_TYPES
# ifndef BOOST_TYPEOF_EMULATION
# ifndef BOOST_TYPEOF_NATIVE
# define BOOST_TYPEOF_NATIVE
# endif
# define BOOST_TYPEOF_KEYWORD __typeof__
# else
# error typeof emulation is not supported
# endif
# else // 9.x
# ifndef BOOST_TYPEOF_EMULATION
# ifndef BOOST_TYPEOF_NATIVE
# define BOOST_TYPEOF_NATIVE
# endif
# define BOOST_TYPEOF_KEYWORD __typeof__
# endif
# endif
#elif defined(_MSC_VER)
# if (_MSC_VER <= 1300) // 6.5, 7.0
# ifndef BOOST_TYPEOF_EMULATION