🚧 fixing warning C4267 (#453)

parent 057b1e60
...@@ -7046,7 +7046,7 @@ class basic_json ...@@ -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 ...@@ -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 ...@@ -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 ...@@ -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 ...@@ -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 ...@@ -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)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment