| 337 | } |
| 338 | |
| 339 | const unsigned char* |
| 340 | parse_cbor_signed( |
| 341 | const unsigned char* first, const unsigned char* last, unsigned char ch, value& v ) |
| 342 | { |
| 343 | std::uint64_t n; |
| 344 | first = parse_cbor_number( first, last, ch, n ); |
| 345 | |
| 346 | v = static_cast<std::int64_t>( ~n ); |
| 347 | return first; |
| 348 | } |
| 349 | |
| 350 | const unsigned char* |
| 351 | parse_cbor_semantic_tag( |
no test coverage detected