Read uint32_t value as varint from buffer. Sets error on failure.
| 572 | |
| 573 | /// Read uint32_t value as varint from buffer. Sets error on failure. |
| 574 | FORY_ALWAYS_INLINE uint32_t read_var_uint32(Error &error) { |
| 575 | return buffer().read_var_uint32(error); |
| 576 | } |
| 577 | |
| 578 | /// Read int32_t value as zigzag varint from buffer. Sets error on failure. |
| 579 | FORY_ALWAYS_INLINE int32_t read_var_int32(Error &error) { |
no outgoing calls