git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@542 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2012-08-01 11:19:26 +00:00
parent 1170af3c1f
commit 4eb67fd831

View file

@ -73,9 +73,9 @@ namespace detail
return (*impl_)( BOOST_PP_ENUM_PARAMS(MOCK_NUM_ARGS, t) ); return (*impl_)( BOOST_PP_ENUM_PARAMS(MOCK_NUM_ARGS, t) );
} }
friend std::ostream& operator<<( std::ostream& s, const function& e ) friend std::ostream& operator<<( std::ostream& s, const function& f )
{ {
return s << *e.impl_; return s << *f.impl_;
} }
function& operator()( context& c, function& operator()( context& c,