Disable new addressof code for all Borland versions. Refs #2878.

[SVN r51891]
This commit is contained in:
Peter Dimov 2009-03-21 20:20:37 +00:00
parent e27fc4a853
commit 3900e8ece4

View File

@ -47,7 +47,7 @@ template<class T> struct addressof_impl
template<class T> T * addressof( T & v ) template<class T> T * addressof( T & v )
{ {
#if BOOST_WORKAROUND( __BORLANDC__, < 0x560 ) #if BOOST_WORKAROUND( __BORLANDC__, BOOST_TESTED_AT( 0x610 ) )
return boost::detail::addressof_impl<T>::f( v, 0 ); return boost::detail::addressof_impl<T>::f( v, 0 );