From 9e9abdd5287da8bf33290b1e8bc17d05121045da Mon Sep 17 00:00:00 2001 From: mat007 Date: Sat, 10 Oct 2009 12:17:12 +0000 Subject: [PATCH] Support for Boost.Lambda git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@60 860be788-9bd5-4423-9f1e-828f051e677b --- src/libraries/turtle/expectation.hpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/libraries/turtle/expectation.hpp b/src/libraries/turtle/expectation.hpp index 6eae1de..34f1be2 100644 --- a/src/libraries/turtle/expectation.hpp +++ b/src/libraries/turtle/expectation.hpp @@ -38,6 +38,12 @@ namespace mock typedef BOOST_DEDUCED_TYPENAME boost::function< Signature >::result_type result_type; + template< typename Args > + struct sig + { + typedef result_type type; + }; + private: typedef detail::matcher< result_type, Signature,