Skip to content

Commit 1a83f89

Browse files
committedFeb 20, 2024··
Fix __float128 test case
1 parent 95ed8ee commit 1a83f89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/github_issue_152_float128.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ void test_non_finite()
3434
{
3535
char buffer[2];
3636
auto r = boost::charconv::to_chars(buffer, buffer + sizeof(buffer), val);
37-
BOOST_TEST(r.ec == std::errc::result_out_of_range);
37+
BOOST_TEST(r.ec == std::errc::value_too_large);
3838
}
3939

4040
char inf_buffer[3];

0 commit comments

Comments
 (0)
Please sign in to comment.