MCPcopy Create free account
hub / github.com/LASzip/LASzip / readFloat

Method readFloat

unused/rangedecoder.cpp:208–213  ·  view source on GitHub ↗

Decode a float without modelling */

Source from the content-addressed store, hash-verified

206
207/* Decode a float without modelling */
208F32 RangeDecoder::readFloat()
209{
210 U32F32 u32f32;
211 u32f32.u32 = readInt();
212 return u32f32.f32;
213}
214
215/* Decode an unsigned 64 bit int without modelling */
216U64 RangeDecoder::readInt64()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected