| 326 | } |
| 327 | |
| 328 | F64 ArithmeticDecoder::readDouble() /* danger in float reinterpretation */ |
| 329 | { |
| 330 | U64I64F64 u64i64f64; |
| 331 | u64i64f64.u64 = readInt64(); |
| 332 | return u64i64f64.f64; |
| 333 | } |
| 334 | |
| 335 | ArithmeticDecoder::~ArithmeticDecoder() |
| 336 | { |
nothing calls this directly
no outgoing calls
no test coverage detected