summaryrefslogtreecommitdiff
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
commitc96f75ac9ee535c0ffbf7bb7921a24af1c7389bd (patch)
tree7a2f9e7a3368948a29a6128307996668dd23ecf2
parentb292fdffad0ecacf3ce6a0ec278a3304d95d8fb6 (diff)
downloadgooglemock-c96f75ac9ee535c0ffbf7bb7921a24af1c7389bd.tar.gz
Removes an unnecessary semi-colon, which causes a warning in GCC's pedantic mode.
git-svn-id: http://googlemock.googlecode.com/svn/trunk@425 8415998a-534a-0410-bf83-d39667b30386
-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 dc93468..8331128 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