Reformatted the Unprintable operator== code style.

This commit is contained in:
mazong1123 2016-07-14 16:49:42 +08:00
parent 531bf5c410
commit dc2dbf1fbf

View File

@ -871,7 +871,10 @@ class Unprintable {
char c_; 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) { TEST(EqTest, CanDescribeSelf) {
Matcher<Unprintable> m = Eq(Unprintable()); Matcher<Unprintable> m = Eq(Unprintable());