From cbb96523eaba02eeabee811ea7aac7e1cfd3c853 Mon Sep 17 00:00:00 2001 From: Mathieu Champlon Date: Mon, 18 Jul 2016 08:51:43 +0200 Subject: [PATCH] Removed link from code comment --- doc/example/reference.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/example/reference.cpp b/doc/example/reference.cpp index 42cec9d..9dbad31 100644 --- a/doc/example/reference.cpp +++ b/doc/example/reference.cpp @@ -234,7 +234,7 @@ namespace member_function_example_8 //[ member_function_example_8 MOCK_CLASS( mock_class ) { - MOCK_METHOD( method, 0, BOOST_IDENTITY_TYPE((std::map< int, int >())) ) // the signature must be wrapped in [@http://www.boost.org/libs/utility/identity_type/doc/html/index.html BOOST_IDENTITY_TYPE] if the return type contains a comma + MOCK_METHOD( method, 0, BOOST_IDENTITY_TYPE((std::map< int, int >())) ) // the signature must be wrapped in BOOST_IDENTITY_TYPE if the return type contains a comma }; //] }