| 159 | } |
| 160 | |
| 161 | void |
| 162 | ensure( std::size_t n, const unsigned char* first, const unsigned char* last ) |
| 163 | { |
| 164 | if( static_cast<std::size_t>(last - first) < n ) |
| 165 | throw_eof_error(); |
| 166 | } |
| 167 | |
| 168 | const unsigned char* |
| 169 | parse_cbor_value( |
no test coverage detected