| 114 | } |
| 115 | |
| 116 | float DecodeStream::readFloat() { |
| 117 | if (!checkEndOfFile(4)) { |
| 118 | auto value = dataView.getFloat(_position); |
| 119 | positionChanged(4); |
| 120 | return value; |
| 121 | } |
| 122 | return 0; |
| 123 | } |
| 124 | |
| 125 | double DecodeStream::readDouble() { |
| 126 | if (!checkEndOfFile(8)) { |
no outgoing calls
no test coverage detected