🚨 fix warnings
This commit is contained in:
parent
8b362b52cb
commit
3393ce0478
@ -1447,7 +1447,7 @@ scan_number_done:
|
|||||||
{
|
{
|
||||||
// escape control characters
|
// escape control characters
|
||||||
std::array<char, 9> cs{{}};
|
std::array<char, 9> cs{{}};
|
||||||
(std::snprintf)(cs.data(), cs.size(), "<U+%.4X>", static_cast<unsigned char>(c)); // NOLINT(cppcoreguidelines-pro-type-vararg,hicpp-varar)
|
(std::snprintf)(cs.data(), cs.size(), "<U+%.4X>", static_cast<unsigned char>(c)); // NOLINT(cppcoreguidelines-pro-type-vararg,hicpp-vararg)
|
||||||
result += cs.data();
|
result += cs.data();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|||||||
@ -1509,7 +1509,7 @@ class binary_writer
|
|||||||
void write_number(const NumberType n)
|
void write_number(const NumberType n)
|
||||||
{
|
{
|
||||||
// step 1: write number to array of length NumberType
|
// step 1: write number to array of length NumberType
|
||||||
std::array<CharType, sizeof(NumberType)> vec;
|
std::array<CharType, sizeof(NumberType)> vec{};
|
||||||
std::memcpy(vec.data(), &n, sizeof(NumberType));
|
std::memcpy(vec.data(), &n, sizeof(NumberType));
|
||||||
|
|
||||||
// step 2: write array to output (with possible reordering)
|
// step 2: write array to output (with possible reordering)
|
||||||
|
|||||||
@ -5936,7 +5936,7 @@ class basic_json
|
|||||||
|
|
||||||
@since version 1.0.0
|
@since version 1.0.0
|
||||||
*/
|
*/
|
||||||
void swap(array_t& other)
|
void swap(array_t& other) // NOLINT(bugprone-exception-escape)
|
||||||
{
|
{
|
||||||
// swap only works for arrays
|
// swap only works for arrays
|
||||||
if (JSON_HEDLEY_LIKELY(is_array()))
|
if (JSON_HEDLEY_LIKELY(is_array()))
|
||||||
@ -5969,7 +5969,7 @@ class basic_json
|
|||||||
|
|
||||||
@since version 1.0.0
|
@since version 1.0.0
|
||||||
*/
|
*/
|
||||||
void swap(object_t& other)
|
void swap(object_t& other) // NOLINT(bugprone-exception-escape)
|
||||||
{
|
{
|
||||||
// swap only works for objects
|
// swap only works for objects
|
||||||
if (JSON_HEDLEY_LIKELY(is_object()))
|
if (JSON_HEDLEY_LIKELY(is_object()))
|
||||||
@ -6002,7 +6002,7 @@ class basic_json
|
|||||||
|
|
||||||
@since version 1.0.0
|
@since version 1.0.0
|
||||||
*/
|
*/
|
||||||
void swap(string_t& other)
|
void swap(string_t& other) // NOLINT(bugprone-exception-escape)
|
||||||
{
|
{
|
||||||
// swap only works for strings
|
// swap only works for strings
|
||||||
if (JSON_HEDLEY_LIKELY(is_string()))
|
if (JSON_HEDLEY_LIKELY(is_string()))
|
||||||
@ -6035,7 +6035,7 @@ class basic_json
|
|||||||
|
|
||||||
@since version 3.8.0
|
@since version 3.8.0
|
||||||
*/
|
*/
|
||||||
void swap(binary_t& other)
|
void swap(binary_t& other) // NOLINT(bugprone-exception-escape)
|
||||||
{
|
{
|
||||||
// swap only works for strings
|
// swap only works for strings
|
||||||
if (JSON_HEDLEY_LIKELY(is_binary()))
|
if (JSON_HEDLEY_LIKELY(is_binary()))
|
||||||
@ -6049,7 +6049,7 @@ class basic_json
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// @copydoc swap(binary_t&)
|
/// @copydoc swap(binary_t&)
|
||||||
void swap(typename binary_t::container_type& other)
|
void swap(typename binary_t::container_type& other) // NOLINT(bugprone-exception-escape)
|
||||||
{
|
{
|
||||||
// swap only works for strings
|
// swap only works for strings
|
||||||
if (JSON_HEDLEY_LIKELY(is_binary()))
|
if (JSON_HEDLEY_LIKELY(is_binary()))
|
||||||
|
|||||||
@ -7436,7 +7436,7 @@ scan_number_done:
|
|||||||
{
|
{
|
||||||
// escape control characters
|
// escape control characters
|
||||||
std::array<char, 9> cs{{}};
|
std::array<char, 9> cs{{}};
|
||||||
(std::snprintf)(cs.data(), cs.size(), "<U+%.4X>", static_cast<unsigned char>(c)); // NOLINT(cppcoreguidelines-pro-type-vararg,hicpp-varar)
|
(std::snprintf)(cs.data(), cs.size(), "<U+%.4X>", static_cast<unsigned char>(c)); // NOLINT(cppcoreguidelines-pro-type-vararg,hicpp-vararg)
|
||||||
result += cs.data();
|
result += cs.data();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|||||||
@ -611,7 +611,7 @@ TEST_CASE("CBOR")
|
|||||||
|
|
||||||
SECTION("-32768..-129 (int 16)")
|
SECTION("-32768..-129 (int 16)")
|
||||||
{
|
{
|
||||||
for (int16_t i = -32768; i <= -129; ++i)
|
for (int16_t i = -32768; i <= int16_t(-129); ++i)
|
||||||
{
|
{
|
||||||
CAPTURE(i)
|
CAPTURE(i)
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user