Skip to content

Commit

Permalink
Reformatted the Unprintable operator== code style.
Browse files Browse the repository at this point in the history
  • Loading branch information
mazong1123 committed Jul 14, 2016
1 parent 531bf5c commit dc2dbf1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion googlemock/test/gmock-matchers_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit dc2dbf1

Please sign in to comment.