We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f81457f commit 7181c8cCopy full SHA for 7181c8c
libcxx/test/support/test_comparisons.h
@@ -268,10 +268,6 @@ struct PartialOrder {
268
}
269
};
270
271
-#endif // TEST_STD_VER >= 20
272
-
273
-#if TEST_STD_VER >= 23
274
275
template <typename T1, typename T2 = T1>
276
concept HasOperatorEqual = requires(T1 t1, T2 t2) { t1 == t2; };
277
@@ -336,6 +332,6 @@ static_assert(HasOperatorLessThanEqual<ThreeWayComparable>);
336
332
static_assert(HasOperatorNotEqual<ThreeWayComparable>);
337
333
static_assert(HasOperatorSpaceship<ThreeWayComparable>);
338
334
339
-#endif // TEST_STD_VER >= 26
335
+#endif // TEST_STD_VER >= 20
340
341
#endif // TEST_COMPARISONS_H
0 commit comments