Returns true if running on a little endian platform.
| 51 | /// Returns true if running on a little endian |
| 52 | /// platform. |
| 53 | inline bool littleEndian() |
| 54 | { |
| 55 | #ifdef IE_CORE_LITTLE_ENDIAN |
| 56 | return true; |
| 57 | #else |
| 58 | return false; |
| 59 | #endif |
| 60 | } |
| 61 | |
| 62 | /// Returns true if running on a big endian |
| 63 | /// platform. |