| 257 | } |
| 258 | |
| 259 | inline float cpp::marshal::Marshal::readBigEndianFloat32(const View<uint8_t>& view) |
| 260 | { |
| 261 | #ifdef HXCPP_BIG_ENDIAN |
| 262 | return readFloat32(view); |
| 263 | #else |
| 264 | return reverse(readFloat32(view)); |
| 265 | #endif |
| 266 | } |
| 267 | |
| 268 | inline double cpp::marshal::Marshal::readBigEndianFloat64(const View<uint8_t>& view) |
| 269 | { |