| 108 | } |
| 109 | |
| 110 | uint32_t readUInt32(bool swap) { |
| 111 | auto value = readChecked<uint32_t>(); |
| 112 | return swap ? byteSwap(value) : value; |
| 113 | } |
| 114 | |
| 115 | template <typename Coord, typename Visit> |
| 116 | void readCoords(uint32_t nCoords, bool swap, Visit&& visit) { |
no test coverage detected