Add float tests to array_thw_test, as floats use std::partial_ordering

This commit is contained in:
Peter Dimov
2025-01-27 03:55:13 +02:00
parent 9a4010b88b
commit 329e59454f

View File

@ -81,6 +81,10 @@ int main()
test<int, 1>();
test<int, 7>();
// test<float, 0>();
test<float, 1>();
test<float, 7>();
return boost::report_errors();
}