Reformatted the Unprintable operator== code style.
This commit is contained in:
parent
531bf5c410
commit
dc2dbf1fbf
|
@ -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());
|
||||||
|
|
Loading…
Reference in New Issue
Block a user