Skip to content

Commit 7181c8c

Browse files
committed
More fixes
1 parent f81457f commit 7181c8c

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

libcxx/test/support/test_comparisons.h

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -268,10 +268,6 @@ struct PartialOrder {
268268
}
269269
};
270270

271-
#endif // TEST_STD_VER >= 20
272-
273-
#if TEST_STD_VER >= 23
274-
275271
template <typename T1, typename T2 = T1>
276272
concept HasOperatorEqual = requires(T1 t1, T2 t2) { t1 == t2; };
277273

@@ -336,6 +332,6 @@ static_assert(HasOperatorLessThanEqual<ThreeWayComparable>);
336332
static_assert(HasOperatorNotEqual<ThreeWayComparable>);
337333
static_assert(HasOperatorSpaceship<ThreeWayComparable>);
338334

339-
#endif // TEST_STD_VER >= 26
335+
#endif // TEST_STD_VER >= 20
340336

341337
#endif // TEST_COMPARISONS_H

0 commit comments

Comments
 (0)