| 28 | static constexpr int OFFSET_UUID_TYPE = 0x8000; |
| 29 | |
| 30 | static inline void SwapEndianInPlace(void *pObj, size_t Size) |
| 31 | { |
| 32 | #if defined(CONF_ARCH_ENDIAN_BIG) |
| 33 | swap_endian(pObj, sizeof(int), Size / sizeof(int)); |
| 34 | #endif |
| 35 | } |
| 36 | |
| 37 | template<typename T> |
| 38 | static inline void SwapEndianInPlace(T *pObj) |
no test coverage detected