| 326 | } |
| 327 | |
| 328 | const unsigned char* |
| 329 | parse_cbor_unsigned( |
| 330 | const unsigned char* first, const unsigned char* last, unsigned char ch, value& v ) |
| 331 | { |
| 332 | std::uint64_t n; |
| 333 | first = parse_cbor_number( first, last, ch, n ); |
| 334 | |
| 335 | v = n; |
| 336 | return first; |
| 337 | } |
| 338 | |
| 339 | const unsigned char* |
| 340 | parse_cbor_signed( |
no test coverage detected