From dc2dbf1fbf1d10c02c3c3912e4b688333e310aa2 Mon Sep 17 00:00:00 2001 From: mazong1123 Date: Thu, 14 Jul 2016 16:49:42 +0800 Subject: Reformatted the Unprintable operator== code style. --- googlemock/test/gmock-matchers_test.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'googlemock/test') diff --git a/googlemock/test/gmock-matchers_test.cc b/googlemock/test/gmock-matchers_test.cc index 29c9dc2c..9f62c3d8 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 m = Eq(Unprintable()); -- cgit v1.2.3