| 291 | } |
| 292 | |
| 293 | void RangeEncoder::writeFloat(F32 sym) |
| 294 | { |
| 295 | U32F32 u32f32; |
| 296 | u32f32.f32 = sym; |
| 297 | writeInt(u32f32.u32); |
| 298 | } |
| 299 | |
| 300 | void RangeEncoder::writeDouble(F64 sym) |
| 301 | { |
nothing calls this directly
no outgoing calls
no test coverage detected