🚨 fix warnings
This commit is contained in:
parent
3cd50255a8
commit
15ff3701a1
@ -578,7 +578,7 @@ class serializer
|
|||||||
case error_handler_t::keep:
|
case error_handler_t::keep:
|
||||||
{
|
{
|
||||||
// copy undumped chars to string buffer
|
// copy undumped chars to string buffer
|
||||||
for (int j = 0; j < undumped_chars; ++j)
|
for (std::size_t j = 0; j < undumped_chars; ++j)
|
||||||
{
|
{
|
||||||
string_buffer[bytes++] = s[bytes_after_last_accept + j];
|
string_buffer[bytes++] = s[bytes_after_last_accept + j];
|
||||||
}
|
}
|
||||||
@ -632,7 +632,7 @@ class serializer
|
|||||||
case error_handler_t::keep:
|
case error_handler_t::keep:
|
||||||
{
|
{
|
||||||
// copy undumped chars to string buffer
|
// copy undumped chars to string buffer
|
||||||
for (int j = 0; j < undumped_chars; ++j)
|
for (std::size_t j = 0; j < undumped_chars; ++j)
|
||||||
{
|
{
|
||||||
string_buffer[bytes++] = s[bytes_after_last_accept + j];
|
string_buffer[bytes++] = s[bytes_after_last_accept + j];
|
||||||
}
|
}
|
||||||
|
|||||||
@ -19140,7 +19140,7 @@ class serializer
|
|||||||
case error_handler_t::keep:
|
case error_handler_t::keep:
|
||||||
{
|
{
|
||||||
// copy undumped chars to string buffer
|
// copy undumped chars to string buffer
|
||||||
for (int j = 0; j < undumped_chars; ++j)
|
for (std::size_t j = 0; j < undumped_chars; ++j)
|
||||||
{
|
{
|
||||||
string_buffer[bytes++] = s[bytes_after_last_accept + j];
|
string_buffer[bytes++] = s[bytes_after_last_accept + j];
|
||||||
}
|
}
|
||||||
@ -19194,7 +19194,7 @@ class serializer
|
|||||||
case error_handler_t::keep:
|
case error_handler_t::keep:
|
||||||
{
|
{
|
||||||
// copy undumped chars to string buffer
|
// copy undumped chars to string buffer
|
||||||
for (int j = 0; j < undumped_chars; ++j)
|
for (std::size_t j = 0; j < undumped_chars; ++j)
|
||||||
{
|
{
|
||||||
string_buffer[bytes++] = s[bytes_after_last_accept + j];
|
string_buffer[bytes++] = s[bytes_after_last_accept + j];
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user