| 266 | } |
| 267 | |
| 268 | inline double cpp::marshal::Marshal::readBigEndianFloat64(const View<uint8_t>& view) |
| 269 | { |
| 270 | #ifdef HXCPP_BIG_ENDIAN |
| 271 | return readFloat64(view); |
| 272 | #else |
| 273 | return reverse(readFloat64(view)); |
| 274 | #endif |
| 275 | } |
| 276 | |
| 277 | template<class T> |
| 278 | inline ::cpp::Pointer<T> cpp::marshal::Marshal::readLittleEndianPointer(const View<uint8_t>& view) |