*** empty log message ***

[SVN r33131]
This commit is contained in:
Arkadiy Vertleyb
2006-02-27 03:18:32 +00:00
parent f3d8469b59
commit e2d492bb49

View File

@ -6,9 +6,11 @@ void f()
{}
template<class T>
class x
struct tpl
{
BOOST_STATIC_ASSERT((
boost::is_same<BOOST_TYPEOF_TPL(&f), void(*)()>::value
));
typedef BOOST_TYPEOF_TPL(&f) type;
};
typedef void(*fun_type)();
BOOST_STATIC_ASSERT((boost::is_same<tpl<void>::type, fun_type>::value));