File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
libcxx/test/libcxx/numerics/c.math Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -40,12 +40,12 @@ int main(int, char**) {
4040 double DummyDouble;
4141 long double DummyLongDouble;
4242
43- ASSERT_NOT_CONSTEXPR_CXX23 (std::abs (-1 ) == 1 );
44- ASSERT_NOT_CONSTEXPR_CXX23 (std::abs (-1L ) == 1L );
45- ASSERT_NOT_CONSTEXPR_CXX23 (std::abs (-1LL ) == 1LL );
46- ASSERT_NOT_CONSTEXPR_CXX23 (std::abs (-1 .0f ) == 1 .0f );
47- ASSERT_NOT_CONSTEXPR_CXX23 (std::abs (-1.0 ) == 1.0 );
48- ASSERT_NOT_CONSTEXPR_CXX23 (std::abs (-1 .0L ) == 1 .0L );
43+ ASSERT_CONSTEXPR_CXX23 (std::abs (-1 ) == 1 );
44+ ASSERT_CONSTEXPR_CXX23 (std::abs (-1L ) == 1L );
45+ ASSERT_CONSTEXPR_CXX23 (std::abs (-1LL ) == 1LL );
46+ ASSERT_CONSTEXPR_CXX23 (std::abs (-1 .0f ) == 1 .0f );
47+ ASSERT_CONSTEXPR_CXX23 (std::abs (-1.0 ) == 1.0 );
48+ ASSERT_CONSTEXPR_CXX23 (std::abs (-1 .0L ) == 1 .0L );
4949
5050 ASSERT_NOT_CONSTEXPR_CXX23 (std::labs (-1L ) == 1L );
5151 ASSERT_NOT_CONSTEXPR_CXX23 (std::llabs (-1LL ) == 1LL );
You can’t perform that action at this time.
0 commit comments