mirror of
https://github.com/google/googletest.git
synced 2025-04-14 08:50:35 +00:00
Reformatted the Unprintable operator== code style.
This commit is contained in:
parent
531bf5c410
commit
dc2dbf1fbf
1 changed files with 4 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue