forked from boostorg/core
Compare commits
10 Commits
boost-1.57
...
boost-1.58
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d0ec03e28b | ||
|
|
dd17b055c6 | ||
|
|
dfa36aeb4c | ||
|
|
67970b9d94 | ||
|
|
d621fc8e25 | ||
|
|
85a9400ceb | ||
|
|
f6dcd3f891 | ||
|
|
37687b800e | ||
|
|
148c4840f3 | ||
|
|
2beeb73e70 |
@@ -107,7 +107,7 @@ template<class T>
|
||||
BOOST_FORCEINLINE
|
||||
T * addressof( T & v )
|
||||
{
|
||||
#if (defined( __BORLANDC__ ) && BOOST_WORKAROUND( __BORLANDC__, BOOST_TESTED_AT( 0x610 ) ) ) || defined( __SUNPRO_CC )
|
||||
#if (defined( __BORLANDC__ ) && BOOST_WORKAROUND( __BORLANDC__, BOOST_TESTED_AT( 0x610 ) ) ) || (defined(__SUNPRO_CC) && BOOST_WORKAROUND(__SUNPRO_CC, <= 0x5120))
|
||||
|
||||
return boost::detail::addressof_impl<T>::f( v, 0 );
|
||||
|
||||
|
||||
@@ -123,9 +123,9 @@ template<class T, class U> inline void test_ne_impl( char const * expr1, char co
|
||||
|
||||
inline int report_errors()
|
||||
{
|
||||
detail::report_errors_remind().called_report_errors_function = true;
|
||||
boost::detail::report_errors_remind().called_report_errors_function = true;
|
||||
|
||||
int errors = detail::test_errors();
|
||||
int errors = boost::detail::test_errors();
|
||||
|
||||
if( errors == 0 )
|
||||
{
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
//
|
||||
|
||||
#include <boost/core/demangle.hpp>
|
||||
#include <typeinfo>
|
||||
#include <iostream>
|
||||
|
||||
template<class T1, class T2> struct Y1
|
||||
|
||||
Reference in New Issue
Block a user