From 239403acc5141e1bb74428565e5a9ba34a270e49 Mon Sep 17 00:00:00 2001 From: mat007 Date: Thu, 3 Jul 2014 05:08:43 +0000 Subject: [PATCH] Fixed examples git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@756 860be788-9bd5-4423-9f1e-828f051e677b --- build/boost/doc/example/reference.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/boost/doc/example/reference.cpp b/build/boost/doc/example/reference.cpp index 76a4535..6dc62b7 100644 --- a/build/boost/doc/example/reference.cpp +++ b/build/boost/doc/example/reference.cpp @@ -533,7 +533,7 @@ BOOST_AUTO_TEST_CASE( demonstrates_setting_up_an_invocation_on_a_mock_functor ) namespace invocation_example_3 { //[ invocation_example_3 -MOCK_FUNCTION( f, 1, float( int ) ) +MOCK_FUNCTION( f, 1, void( int ) ) BOOST_AUTO_TEST_CASE( demonstrates_setting_up_an_invocation_on_a_mock_function ) { @@ -547,7 +547,7 @@ namespace invocation_example_4 //[ invocation_example_4 MOCK_CLASS( mock_class ) { - MOCK_STATIC_METHOD( method, 1, float( int ) ) + MOCK_STATIC_METHOD( method, 1, void( int ) ) }; BOOST_AUTO_TEST_CASE( demonstrates_setting_up_an_invocation_on_a_mock_static_method )