We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ade2858 commit 0162243Copy full SHA for 0162243
test/test_to_string.cpp
@@ -50,6 +50,7 @@ void test_builtin()
50
const auto value_str {to_string(int128_t{value})};
51
52
BOOST_TEST_CSTR_EQ(buffer, value_str.c_str());
53
+ BOOST_TEST_CSTR_EQ(std::to_string(value).c_str(), value_str.c_str());
54
}
55
56
@@ -71,11 +72,13 @@ void test_builtin()
71
72
73
74
75
76
77
{
78
const auto value_str {to_string(uint128_t{value})};
79
80
81
82
83
84
0 commit comments