| 285 | |
| 286 | template <typename FloatType> |
| 287 | void DataStream::vfwrite(FloatType const& data, FloatType base) { |
| 288 | writeVlqI((int64_t)round(data / base)); |
| 289 | } |
| 290 | |
| 291 | template <typename PointerType, typename ReadFunction> |
| 292 | void DataStream::pread(PointerType& pointer, ReadFunction readFunction) { |
no test coverage detected