Removes an unnecessary semi-colon, which causes a warning in GCC's pedantic mode.

This commit is contained in:
zhanyong.wan 2013-03-08 17:53:24 +00:00
parent a1a98f840e
commit 2eab17b76d

View File

@ -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