diff options
Diffstat (limited to 'googlemock')
-rw-r--r-- | googlemock/test/gmock-matchers_test.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/googlemock/test/gmock-matchers_test.cc b/googlemock/test/gmock-matchers_test.cc index 29c9dc2..9f62c3d 100644 --- a/googlemock/test/gmock-matchers_test.cc +++ b/googlemock/test/gmock-matchers_test.cc @@ -871,7 +871,10 @@ class Unprintable { char c_; }; -inline bool operator==(const Unprintable&, /* lhs */ const Unprintable& /* rhs */) { return true; } +inline bool operator==(const Unprintable& /* lhs */, + const Unprintable& /* rhs */) { + return true; +} TEST(EqTest, CanDescribeSelf) { Matcher<Unprintable> m = Eq(Unprintable()); |