From caf39083e4519864ee700a86b496699b25e267a1 Mon Sep 17 00:00:00 2001 From: Mathieu Champlon Date: Sat, 14 Mar 2015 07:26:06 +0100 Subject: [PATCH] Fixed class name conflicting with the mock namespace --- 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 f7c24d0..61fa10c 100644 --- a/doc/example/reference.cpp +++ b/doc/example/reference.cpp @@ -109,7 +109,7 @@ struct base {}; template< typename T > -struct mock : base< T >, mock::object +struct name : base< T >, mock::object { typedef typename base< T > base_type; };