medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit a23ce8f80aa6d8c2b889da91e310681195b10520
parent 01c3a5746d8422addfb3a67775a0cccd5db2d714
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Wed Sep 14 20:55:10 +0100

Error in platform_endian if we can't tell what platform we're on

Diffstat:
platform_endian.h | 2++
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/platform_endian.h b/platform_endian.h @@ -11,6 +11,8 @@ # endif #elif defined( _WIN32 ) # define IS_LITTLE_ENDIAN +#else +# error new platform #endif #endif // _PLATFORM_ENDIAN_H_