mirror of
https://github.com/nlohmann/json.git
synced 2025-07-28 12:02:00 +03:00
💡 update documentation
This commit is contained in:
@ -64,4 +64,4 @@ type `#!cpp binary_t*` must be dereferenced.
|
||||
|
||||
## Version history
|
||||
|
||||
- Added in version 3.8.0.
|
||||
- Added in version 3.8.0. Changed type of subtype to `std::uint64_t` in version 3.9.2.
|
||||
|
@ -4,7 +4,8 @@
|
||||
enum class cbor_tag_handler_t
|
||||
{
|
||||
error,
|
||||
ignore
|
||||
ignore,
|
||||
store
|
||||
};
|
||||
```
|
||||
|
||||
@ -16,6 +17,9 @@ error
|
||||
ignore
|
||||
: ignore tags
|
||||
|
||||
store
|
||||
: store tagged values as binary container with subtype (for bytes 0xd8..0xdb)
|
||||
|
||||
## Version history
|
||||
|
||||
- Added in version 3.9.0.
|
||||
- Added in version 3.9.0. Added value `store` in 3.9.2.
|
||||
|
Reference in New Issue
Block a user