From 2eab17b76d350dac1b1c85879ec8e1135da615ce Mon Sep 17 00:00:00 2001 From: "zhanyong.wan" Date: Fri, 8 Mar 2013 17:53:24 +0000 Subject: [PATCH] Removes an unnecessary semi-colon, which causes a warning in GCC's pedantic mode. --- include/gmock/gmock-matchers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/gmock/gmock-matchers.h b/include/gmock/gmock-matchers.h index dc93468c..83311280 100644 --- a/include/gmock/gmock-matchers.h +++ b/include/gmock/gmock-matchers.h @@ -387,7 +387,7 @@ class PolymorphicMatcher { template inline Matcher MakeMatcher(const MatcherInterface* impl) { return Matcher(impl); -}; +} // Creates a polymorphic matcher from its implementation. This is // easier to use than the PolymorphicMatcher constructor as it