diff options
Diffstat (limited to 'test/support/is_transparent.h')
-rw-r--r-- | test/support/is_transparent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/support/is_transparent.h b/test/support/is_transparent.h index 58255248abc9..d76b00536b52 100644 --- a/test/support/is_transparent.h +++ b/test/support/is_transparent.h @@ -10,7 +10,7 @@ #ifndef TRANSPARENT_H #define TRANSPARENT_H -// testing transparent +// testing transparent #if _LIBCPP_STD_VER > 11 struct transparent_less @@ -63,7 +63,7 @@ struct C2Int { // comparable to int private: int i_; }; - + bool operator <(int rhs, const C2Int& lhs) { return rhs < lhs.get(); } bool operator <(const C2Int& rhs, const C2Int& lhs) { return rhs.get() < lhs.get(); } bool operator <(const C2Int& rhs, int lhs) { return rhs.get() < lhs; } |