Fix spelling (#3125)
This commit is contained in:
parent
5c08a52fd6
commit
834918018e
@ -42,7 +42,7 @@ enum class cbor_tag_handler_t
|
|||||||
|
|
||||||
@note from https://stackoverflow.com/a/1001328/266378
|
@note from https://stackoverflow.com/a/1001328/266378
|
||||||
*/
|
*/
|
||||||
static inline bool little_endianess(int num = 1) noexcept
|
static inline bool little_endianness(int num = 1) noexcept
|
||||||
{
|
{
|
||||||
return *reinterpret_cast<char*>(&num) == 1;
|
return *reinterpret_cast<char*>(&num) == 1;
|
||||||
}
|
}
|
||||||
@ -2341,7 +2341,7 @@ class binary_reader
|
|||||||
|
|
||||||
@return whether conversion completed
|
@return whether conversion completed
|
||||||
|
|
||||||
@note This function needs to respect the system's endianess, because
|
@note This function needs to respect the system's endianness, because
|
||||||
bytes in CBOR, MessagePack, and UBJSON are stored in network order
|
bytes in CBOR, MessagePack, and UBJSON are stored in network order
|
||||||
(big endian) and therefore need reordering on little endian systems.
|
(big endian) and therefore need reordering on little endian systems.
|
||||||
*/
|
*/
|
||||||
@ -2514,8 +2514,8 @@ class binary_reader
|
|||||||
/// the number of characters read
|
/// the number of characters read
|
||||||
std::size_t chars_read = 0;
|
std::size_t chars_read = 0;
|
||||||
|
|
||||||
/// whether we can assume little endianess
|
/// whether we can assume little endianness
|
||||||
const bool is_little_endian = little_endianess();
|
const bool is_little_endian = little_endianness();
|
||||||
|
|
||||||
/// the SAX parser
|
/// the SAX parser
|
||||||
json_sax_t* sax = nullptr;
|
json_sax_t* sax = nullptr;
|
||||||
|
@ -450,7 +450,7 @@ auto input_adapter(T (&array)[N]) -> decltype(input_adapter(array, array + N)) /
|
|||||||
}
|
}
|
||||||
|
|
||||||
// This class only handles inputs of input_buffer_adapter type.
|
// This class only handles inputs of input_buffer_adapter type.
|
||||||
// It's required so that expressions like {ptr, len} can be implicitely casted
|
// It's required so that expressions like {ptr, len} can be implicitly casted
|
||||||
// to the correct adapter.
|
// to the correct adapter.
|
||||||
class span_input_adapter
|
class span_input_adapter
|
||||||
{
|
{
|
||||||
|
@ -1535,7 +1535,7 @@ class binary_writer
|
|||||||
@tparam OutputIsLittleEndian Set to true if output data is
|
@tparam OutputIsLittleEndian Set to true if output data is
|
||||||
required to be little endian
|
required to be little endian
|
||||||
|
|
||||||
@note This function needs to respect the system's endianess, because bytes
|
@note This function needs to respect the system's endianness, because bytes
|
||||||
in CBOR, MessagePack, and UBJSON are stored in network order (big
|
in CBOR, MessagePack, and UBJSON are stored in network order (big
|
||||||
endian) and therefore need reordering on little endian systems.
|
endian) and therefore need reordering on little endian systems.
|
||||||
*/
|
*/
|
||||||
@ -1625,8 +1625,8 @@ class binary_writer
|
|||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/// whether we can assume little endianess
|
/// whether we can assume little endianness
|
||||||
const bool is_little_endian = little_endianess();
|
const bool is_little_endian = little_endianness();
|
||||||
|
|
||||||
/// the output
|
/// the output
|
||||||
output_adapter_t<CharType> oa = nullptr;
|
output_adapter_t<CharType> oa = nullptr;
|
||||||
|
@ -908,7 +908,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
|
|||||||
- If a subtype is given and the binary array contains exactly 1, 2, 4, 8,
|
- If a subtype is given and the binary array contains exactly 1, 2, 4, 8,
|
||||||
or 16 elements, the fixext family (fixext1, fixext2, fixext4, fixext8)
|
or 16 elements, the fixext family (fixext1, fixext2, fixext4, fixext8)
|
||||||
is used. For other sizes, the ext family (ext8, ext16, ext32) is used.
|
is used. For other sizes, the ext family (ext8, ext16, ext32) is used.
|
||||||
The subtype is then added as singed 8-bit integer.
|
The subtype is then added as signed 8-bit integer.
|
||||||
- If no subtype is given, the bin family (bin8, bin16, bin32) is used.
|
- If no subtype is given, the bin family (bin8, bin16, bin32) is used.
|
||||||
- BSON
|
- BSON
|
||||||
- If a subtype is given, it is used and added as unsigned 8-bit integer.
|
- If a subtype is given, it is used and added as unsigned 8-bit integer.
|
||||||
@ -5021,7 +5021,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
|
|||||||
`key()` returns an empty string.
|
`key()` returns an empty string.
|
||||||
|
|
||||||
@warning Using `items()` on temporary objects is dangerous. Make sure the
|
@warning Using `items()` on temporary objects is dangerous. Make sure the
|
||||||
object's lifetime exeeds the iteration. See
|
object's lifetime exceeds the iteration. See
|
||||||
<https://github.com/nlohmann/json/issues/2040> for more
|
<https://github.com/nlohmann/json/issues/2040> for more
|
||||||
information.
|
information.
|
||||||
|
|
||||||
|
@ -5875,7 +5875,7 @@ auto input_adapter(T (&array)[N]) -> decltype(input_adapter(array, array + N)) /
|
|||||||
}
|
}
|
||||||
|
|
||||||
// This class only handles inputs of input_buffer_adapter type.
|
// This class only handles inputs of input_buffer_adapter type.
|
||||||
// It's required so that expressions like {ptr, len} can be implicitely casted
|
// It's required so that expressions like {ptr, len} can be implicitly casted
|
||||||
// to the correct adapter.
|
// to the correct adapter.
|
||||||
class span_input_adapter
|
class span_input_adapter
|
||||||
{
|
{
|
||||||
@ -8430,7 +8430,7 @@ enum class cbor_tag_handler_t
|
|||||||
|
|
||||||
@note from https://stackoverflow.com/a/1001328/266378
|
@note from https://stackoverflow.com/a/1001328/266378
|
||||||
*/
|
*/
|
||||||
static inline bool little_endianess(int num = 1) noexcept
|
static inline bool little_endianness(int num = 1) noexcept
|
||||||
{
|
{
|
||||||
return *reinterpret_cast<char*>(&num) == 1;
|
return *reinterpret_cast<char*>(&num) == 1;
|
||||||
}
|
}
|
||||||
@ -10729,7 +10729,7 @@ class binary_reader
|
|||||||
|
|
||||||
@return whether conversion completed
|
@return whether conversion completed
|
||||||
|
|
||||||
@note This function needs to respect the system's endianess, because
|
@note This function needs to respect the system's endianness, because
|
||||||
bytes in CBOR, MessagePack, and UBJSON are stored in network order
|
bytes in CBOR, MessagePack, and UBJSON are stored in network order
|
||||||
(big endian) and therefore need reordering on little endian systems.
|
(big endian) and therefore need reordering on little endian systems.
|
||||||
*/
|
*/
|
||||||
@ -10902,8 +10902,8 @@ class binary_reader
|
|||||||
/// the number of characters read
|
/// the number of characters read
|
||||||
std::size_t chars_read = 0;
|
std::size_t chars_read = 0;
|
||||||
|
|
||||||
/// whether we can assume little endianess
|
/// whether we can assume little endianness
|
||||||
const bool is_little_endian = little_endianess();
|
const bool is_little_endian = little_endianness();
|
||||||
|
|
||||||
/// the SAX parser
|
/// the SAX parser
|
||||||
json_sax_t* sax = nullptr;
|
json_sax_t* sax = nullptr;
|
||||||
@ -15202,7 +15202,7 @@ class binary_writer
|
|||||||
@tparam OutputIsLittleEndian Set to true if output data is
|
@tparam OutputIsLittleEndian Set to true if output data is
|
||||||
required to be little endian
|
required to be little endian
|
||||||
|
|
||||||
@note This function needs to respect the system's endianess, because bytes
|
@note This function needs to respect the system's endianness, because bytes
|
||||||
in CBOR, MessagePack, and UBJSON are stored in network order (big
|
in CBOR, MessagePack, and UBJSON are stored in network order (big
|
||||||
endian) and therefore need reordering on little endian systems.
|
endian) and therefore need reordering on little endian systems.
|
||||||
*/
|
*/
|
||||||
@ -15292,8 +15292,8 @@ class binary_writer
|
|||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/// whether we can assume little endianess
|
/// whether we can assume little endianness
|
||||||
const bool is_little_endian = little_endianess();
|
const bool is_little_endian = little_endianness();
|
||||||
|
|
||||||
/// the output
|
/// the output
|
||||||
output_adapter_t<CharType> oa = nullptr;
|
output_adapter_t<CharType> oa = nullptr;
|
||||||
@ -18409,7 +18409,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
|
|||||||
- If a subtype is given and the binary array contains exactly 1, 2, 4, 8,
|
- If a subtype is given and the binary array contains exactly 1, 2, 4, 8,
|
||||||
or 16 elements, the fixext family (fixext1, fixext2, fixext4, fixext8)
|
or 16 elements, the fixext family (fixext1, fixext2, fixext4, fixext8)
|
||||||
is used. For other sizes, the ext family (ext8, ext16, ext32) is used.
|
is used. For other sizes, the ext family (ext8, ext16, ext32) is used.
|
||||||
The subtype is then added as singed 8-bit integer.
|
The subtype is then added as signed 8-bit integer.
|
||||||
- If no subtype is given, the bin family (bin8, bin16, bin32) is used.
|
- If no subtype is given, the bin family (bin8, bin16, bin32) is used.
|
||||||
- BSON
|
- BSON
|
||||||
- If a subtype is given, it is used and added as unsigned 8-bit integer.
|
- If a subtype is given, it is used and added as unsigned 8-bit integer.
|
||||||
@ -22522,7 +22522,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
|
|||||||
`key()` returns an empty string.
|
`key()` returns an empty string.
|
||||||
|
|
||||||
@warning Using `items()` on temporary objects is dangerous. Make sure the
|
@warning Using `items()` on temporary objects is dangerous. Make sure the
|
||||||
object's lifetime exeeds the iteration. See
|
object's lifetime exceeds the iteration. See
|
||||||
<https://github.com/nlohmann/json/issues/2040> for more
|
<https://github.com/nlohmann/json/issues/2040> for more
|
||||||
information.
|
information.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user