applies BOOST_DEDUCED_TYPENAME to hopefully please VACPP

[SVN r61634]
This commit is contained in:
Tobias Schwinger
2010-04-27 23:14:23 +00:00
parent 2f112825b9
commit 67cadfe2b3
2 changed files with 4 additions and 4 deletions

View File

@@ -141,7 +141,7 @@ namespace boost
{ {
template< class Self > template< class Self >
struct forward_adapter_result::apply< Self() > struct forward_adapter_result::apply< Self() >
: boost::result_of< typename c<Self>::t() > : boost::result_of< BOOST_DEDUCED_TYPENAME c<Self>::t() >
{ }; { };
template< class MD, class F, class FC > template< class MD, class F, class FC >
@@ -316,7 +316,7 @@ namespace boost
template< class Self, BOOST_PP_ENUM_PARAMS(N,typename T) > template< class Self, BOOST_PP_ENUM_PARAMS(N,typename T) >
struct forward_adapter_result::apply< Self(BOOST_PP_ENUM_PARAMS(N,T)) > struct forward_adapter_result::apply< Self(BOOST_PP_ENUM_PARAMS(N,T)) >
: boost::result_of< : boost::result_of<
typename c<Self>::t(BOOST_PP_ENUM_BINARY_PARAMS(N, BOOST_DEDUCED_TYPENAME c<Self>::t(BOOST_PP_ENUM_BINARY_PARAMS(N,
typename q<T,>::t& BOOST_PP_INTERCEPT)) > typename q<T,>::t& BOOST_PP_INTERCEPT)) >
{ }; { };

View File

@@ -146,7 +146,7 @@ namespace boost
{ {
template< class Self > template< class Self >
struct lightweight_forward_adapter_result::apply< Self() > struct lightweight_forward_adapter_result::apply< Self() >
: boost::result_of< typename c<Self>::t() > : boost::result_of< BOOST_DEDUCED_TYPENAME c<Self>::t() >
{ }; { };
template< class MD, class F, class FC > template< class MD, class F, class FC >
@@ -205,7 +205,7 @@ namespace boost
struct lightweight_forward_adapter_result::apply< struct lightweight_forward_adapter_result::apply<
Self (BOOST_PP_ENUM_PARAMS(N,T)) > Self (BOOST_PP_ENUM_PARAMS(N,T)) >
: boost::result_of< : boost::result_of<
typename c<Self>::t (BOOST_PP_ENUM_BINARY_PARAMS(N, BOOST_DEDUCED_TYPENAME c<Self>::t (BOOST_PP_ENUM_BINARY_PARAMS(N,
typename x<T,>::t BOOST_PP_INTERCEPT)) > typename x<T,>::t BOOST_PP_INTERCEPT)) >
{ }; { };