From e85cf69f9f6899476764bbafb0142eff989edfdb Mon Sep 17 00:00:00 2001 From: mat007 Date: Sun, 23 Nov 2014 10:53:56 +0000 Subject: [PATCH] Updated documentation git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@757 860be788-9bd5-4423-9f1e-828f051e677b --- build/boost/doc/reference.qbk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/boost/doc/reference.qbk b/build/boost/doc/reference.qbk index 60e4400..e125015 100644 --- a/build/boost/doc/reference.qbk +++ b/build/boost/doc/reference.qbk @@ -482,6 +482,8 @@ Synopsis : MOCK_EXPECT( identifier ).throws( exception ); MOCK_EXPECT( identifier ).calls( functor ); // gets assigned to a boost::function and throws std::invalid_argument if empty +[note The returns and moves actions are not available for mock methods returning void, including constructors and destructors.] + Example : [action_example_1]