Commit dc2dbf1f by mazong1123

Reformatted the Unprintable operator== code style.

parent 531bf5c4
...@@ -871,7 +871,10 @@ class Unprintable { ...@@ -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());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment