File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -97,11 +97,12 @@ concept CanBePiped = requires(View&& view, T&& t) {
97
97
};
98
98
99
99
template <class T , class U >
100
- concept weakly_equality_comparable_with = requires (const std::remove_reference_t <T>& t, const std::remove_reference_t <U>& u) {
101
- { t == u } -> std::same_as<bool >;
102
- { t != u } -> std::same_as<bool >;
103
- { u == t } -> std::same_as<bool >;
104
- { u != t } -> std::same_as<bool >;
105
- };
100
+ concept weakly_equality_comparable_with =
101
+ requires (const std::remove_reference_t <T>& t, const std::remove_reference_t <U>& u) {
102
+ { t == u } -> std::same_as<bool >;
103
+ { t != u } -> std::same_as<bool >;
104
+ { u == t } -> std::same_as<bool >;
105
+ { u != t } -> std::same_as<bool >;
106
+ };
106
107
107
108
#endif // LIBCXX_TEST_SUPPORT_TEST_RANGE_H
You can’t perform that action at this time.
0 commit comments