| 47 | |
| 48 | template <typename Uint> |
| 49 | void unpack(const uint8_t* in, Uint* out, const UnpackOptions& opts) { |
| 50 | static const DynamicDispatch<UnpackDynamicFunction<Uint>> dispatch; |
| 51 | return dispatch(in, out, opts); |
| 52 | } |
| 53 | |
| 54 | template void unpack<bool>(const uint8_t*, bool*, const UnpackOptions&); |
| 55 | template void unpack<uint8_t>(const uint8_t*, uint8_t*, const UnpackOptions&); |
no outgoing calls