aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorzhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386>2013-03-08 17:53:24 +0000
committerzhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386>2013-03-08 17:53:24 +0000
commit2eab17b76d350dac1b1c85879ec8e1135da615ce (patch)
tree7a2f9e7a3368948a29a6128307996668dd23ecf2 /include
parenta1a98f840e25692ddcb0ca872aaf8362a2b4e088 (diff)
downloadgoogletest-2eab17b76d350dac1b1c85879ec8e1135da615ce.tar.gz
googletest-2eab17b76d350dac1b1c85879ec8e1135da615ce.tar.bz2
googletest-2eab17b76d350dac1b1c85879ec8e1135da615ce.zip
Removes an unnecessary semi-colon, which causes a warning in GCC's pedantic mode.
Diffstat (limited to 'include')
-rw-r--r--include/gmock/gmock-matchers.h2
1 files changed, 1 insertions, 1 deletions
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 <typename T>
inline Matcher<T> MakeMatcher(const MatcherInterface<T>* impl) {
return Matcher<T>(impl);
-};
+}
// Creates a polymorphic matcher from its implementation. This is
// easier to use than the PolymorphicMatcher<Impl> constructor as it