Removes an unnecessary semi-colon, which causes a warning in GCC's pedantic mode.
This commit is contained in:
parent
a1a98f840e
commit
2eab17b76d
@ -387,7 +387,7 @@ class PolymorphicMatcher {
|
|||||||
template <typename T>
|
template <typename T>
|
||||||
inline Matcher<T> MakeMatcher(const MatcherInterface<T>* impl) {
|
inline Matcher<T> MakeMatcher(const MatcherInterface<T>* impl) {
|
||||||
return Matcher<T>(impl);
|
return Matcher<T>(impl);
|
||||||
};
|
}
|
||||||
|
|
||||||
// Creates a polymorphic matcher from its implementation. This is
|
// Creates a polymorphic matcher from its implementation. This is
|
||||||
// easier to use than the PolymorphicMatcher<Impl> constructor as it
|
// easier to use than the PolymorphicMatcher<Impl> constructor as it
|
||||||
|
Loading…
Reference in New Issue
Block a user