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 d79c4c1 commit 5bd3ee0Copy full SHA for 5bd3ee0
libcxx/test/std/language.support/cmp/cmp.alg/strong_order.pass.cpp
@@ -454,12 +454,16 @@ int main(int, char**)
454
test_1_2();
455
test_1_3<float>();
456
test_1_3<double>();
457
- // test_1_3<long double>(); // UNIMPLEMENTED
+#ifdef TEST_LONG_DOUBLE_IS_DOUBLE
458
+ test_1_3<long double>(); // UNIMPLEMENTED when long double is a distinct type
459
+#endif
460
test_1_4();
461
462
static_assert(test_1_3<float>());
463
static_assert(test_1_3<double>());
- // static_assert(test_1_3<long double>()); // UNIMPLEMENTED
464
465
+ static_assert(test_1_3<long double>()); // UNIMPLEMENTED when long double is a distinct type
466
467
static_assert(test_1_4());
468
469
return 0;
0 commit comments