| 15 | using namespace seria; |
| 16 | |
| 17 | bool BinaryInputStream::begin_array(size_t &size, bool fixed_size) { |
| 18 | if (!fixed_size) |
| 19 | size = stream.read_varint<size_t>(); |
| 20 | return true; |
| 21 | } |
| 22 | |
| 23 | bool BinaryInputStream::begin_map(size_t &size) { |
| 24 | size = stream.read_varint<size_t>(); |
nothing calls this directly
no outgoing calls
no test coverage detected