Merge [61344] to release. Fixes #4108.

[SVN r62244]
This commit is contained in:
Peter Dimov
2010-05-26 17:34:01 +00:00
parent 1f50e3abe4
commit b9d77d877e

View File

@ -45,7 +45,7 @@ template< class Y, class T > struct sp_convertible
static yes f( T* );
static no f( ... );
enum _vt { value = sizeof( f( static_cast<Y*>(0) ) ) == sizeof(yes) };
enum _vt { value = sizeof( (f)( static_cast<Y*>(0) ) ) == sizeof(yes) };
};
struct sp_empty