diff options
| author | zhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386> | 2013-03-08 17:53:24 +0000 |
|---|---|---|
| committer | zhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386> | 2013-03-08 17:53:24 +0000 |
| commit | 2eab17b76d350dac1b1c85879ec8e1135da615ce (patch) | |
| tree | 7a2f9e7a3368948a29a6128307996668dd23ecf2 | |
| parent | a1a98f840e25692ddcb0ca872aaf8362a2b4e088 (diff) | |
| download | googletest-2eab17b76d350dac1b1c85879ec8e1135da615ce.tar.gz googletest-2eab17b76d350dac1b1c85879ec8e1135da615ce.tar.bz2 googletest-2eab17b76d350dac1b1c85879ec8e1135da615ce.zip | |
Removes an unnecessary semi-colon, which causes a warning in GCC's pedantic mode.
| -rw-r--r-- | include/gmock/gmock-matchers.h | 2 |
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 |
