Skip to content

Commit

Permalink
Pack usage of infinity const under IF_DOUBLE_SUPPORT
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeyKopienko committed Jan 31, 2025
1 parent c19ee0c commit 6226b4a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ void test_edges()

ONEDPL_TEST_NUM_MAIN
{
test<float>();
IF_DOUBLE_SUPPORT(test<float>())
IF_DOUBLE_SUPPORT(test<double>())
IF_LONG_DOUBLE_SUPPORT(test<long double>())
IF_DOUBLE_SUPPORT(test_edges())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ void test_edges()

ONEDPL_TEST_NUM_MAIN
{
test<float>();
IF_DOUBLE_SUPPORT(test<float>())
IF_DOUBLE_SUPPORT(test<double>())
IF_LONG_DOUBLE_SUPPORT(test<long double>())
IF_DOUBLE_SUPPORT(test_edges())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ void test_edges()

ONEDPL_TEST_NUM_MAIN
{
test<float>();
IF_DOUBLE_SUPPORT(test<float>())
IF_DOUBLE_SUPPORT(test<double>())
IF_LONG_DOUBLE_SUPPORT(test<long double>())
IF_DOUBLE_SUPPORT(test_edges())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ void test_edges()

ONEDPL_TEST_NUM_MAIN
{
test<float>();
IF_DOUBLE_SUPPORT(test<float>())
IF_DOUBLE_SUPPORT(test<double>())
IF_LONG_DOUBLE_SUPPORT(test<long double>())
IF_DOUBLE_SUPPORT(test_edges())
Expand Down

0 comments on commit 6226b4a

Please sign in to comment.