Reformatted the Unprintable operator== code style.

pull/821/head
mazong1123 9 years ago
parent 531bf5c410
commit dc2dbf1fbf
  1. 5
      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());

Loading…
Cancel
Save