Skip to content

Commit

Permalink
Add longer test case
Browse files Browse the repository at this point in the history
  • Loading branch information
mborland committed Oct 26, 2023
1 parent c45a647 commit eedef04
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/to_chars_float_STL_comp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,10 @@ int main()
test_spot<double>(3.3);
test_spot<long double>(3.3L);

test_spot<float>(3.141592653589793238462643383279502884197F);
test_spot<double>(3.141592653589793238462643383279502884197);
test_spot<long double>(3.141592653589793238462643383279502884197L);

return boost::report_errors();
}

Expand Down

0 comments on commit eedef04

Please sign in to comment.