C++11 patches by Michel Morin

[SVN r75394]
This commit is contained in:
Joel de Guzman
2011-11-07 22:07:05 +00:00
parent c2052a3c0c
commit bbf10066bc
11 changed files with 66 additions and 3 deletions

View File

@ -71,7 +71,7 @@ void result_type_tests()
typedef fusion::unfused< test_func<> > t;
BOOST_TEST(( is_same< boost::result_of< t () >::type, long >::value ));
BOOST_TEST(( is_same< boost::result_of< t (int) >::type, long >::value ));
BOOST_TEST(( is_same< boost::result_of< t (int &) >::type, long >::value ));
}
int main()