🚧 fixing warning C4267 (#453)
This commit is contained in:
parent
057b1e606b
commit
0200f2dc62
2 changed files with 6 additions and 6 deletions
|
@ -7046,7 +7046,7 @@ class basic_json
|
||||||
const auto N = j.m_value.string->size();
|
const auto N = j.m_value.string->size();
|
||||||
if (N <= 0x17)
|
if (N <= 0x17)
|
||||||
{
|
{
|
||||||
v.push_back(0x60 + N); // 1 byte for string + size
|
v.push_back(0x60 + static_cast<uint8_t>(N)); // 1 byte for string + size
|
||||||
}
|
}
|
||||||
else if (N <= 0xff)
|
else if (N <= 0xff)
|
||||||
{
|
{
|
||||||
|
@ -7082,7 +7082,7 @@ class basic_json
|
||||||
const auto N = j.m_value.array->size();
|
const auto N = j.m_value.array->size();
|
||||||
if (N <= 0x17)
|
if (N <= 0x17)
|
||||||
{
|
{
|
||||||
v.push_back(0x80 + N); // 1 byte for array + size
|
v.push_back(0x80 + static_cast<uint8_t>(N)); // 1 byte for array + size
|
||||||
}
|
}
|
||||||
else if (N <= 0xff)
|
else if (N <= 0xff)
|
||||||
{
|
{
|
||||||
|
@ -7120,7 +7120,7 @@ class basic_json
|
||||||
const auto N = j.m_value.object->size();
|
const auto N = j.m_value.object->size();
|
||||||
if (N <= 0x17)
|
if (N <= 0x17)
|
||||||
{
|
{
|
||||||
v.push_back(0xa0 + N); // 1 byte for object + size
|
v.push_back(0xa0 + static_cast<uint8_t>(N)); // 1 byte for object + size
|
||||||
}
|
}
|
||||||
else if (N <= 0xff)
|
else if (N <= 0xff)
|
||||||
{
|
{
|
||||||
|
|
|
@ -7046,7 +7046,7 @@ class basic_json
|
||||||
const auto N = j.m_value.string->size();
|
const auto N = j.m_value.string->size();
|
||||||
if (N <= 0x17)
|
if (N <= 0x17)
|
||||||
{
|
{
|
||||||
v.push_back(0x60 + N); // 1 byte for string + size
|
v.push_back(0x60 + static_cast<uint8_t>(N)); // 1 byte for string + size
|
||||||
}
|
}
|
||||||
else if (N <= 0xff)
|
else if (N <= 0xff)
|
||||||
{
|
{
|
||||||
|
@ -7082,7 +7082,7 @@ class basic_json
|
||||||
const auto N = j.m_value.array->size();
|
const auto N = j.m_value.array->size();
|
||||||
if (N <= 0x17)
|
if (N <= 0x17)
|
||||||
{
|
{
|
||||||
v.push_back(0x80 + N); // 1 byte for array + size
|
v.push_back(0x80 + static_cast<uint8_t>(N)); // 1 byte for array + size
|
||||||
}
|
}
|
||||||
else if (N <= 0xff)
|
else if (N <= 0xff)
|
||||||
{
|
{
|
||||||
|
@ -7120,7 +7120,7 @@ class basic_json
|
||||||
const auto N = j.m_value.object->size();
|
const auto N = j.m_value.object->size();
|
||||||
if (N <= 0x17)
|
if (N <= 0x17)
|
||||||
{
|
{
|
||||||
v.push_back(0xa0 + N); // 1 byte for object + size
|
v.push_back(0xa0 + static_cast<uint8_t>(N)); // 1 byte for object + size
|
||||||
}
|
}
|
||||||
else if (N <= 0xff)
|
else if (N <= 0xff)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue