Mercurial > sdl-ios-xcode
changeset 2706:ce3ddf8dd6d2
disabled compile time assertion ... no 64 bit primitive types available on iPhone (it appears)
author | Holmes Futrell <hfutrell@umail.ucsb.edu> |
---|---|
date | Sun, 22 Jun 2008 23:13:02 +0000 |
parents | 0f62c4ae1cd5 |
children | 6259afb046c5 |
files | include/SDL_stdinc.h |
diffstat | 1 files changed, 5 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/include/SDL_stdinc.h Sun Jun 22 23:12:02 2008 +0000 +++ b/include/SDL_stdinc.h Sun Jun 22 23:13:02 2008 +0000 @@ -147,8 +147,10 @@ SDL_COMPILE_TIME_ASSERT(sint16, sizeof(Sint16) == 2); SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4); SDL_COMPILE_TIME_ASSERT(sint32, sizeof(Sint32) == 4); -SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8); -SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8); + +// SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8); +// SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8); + #endif /* DOXYGEN_SHOULD_IGNORE_THIS */ /* Check to make sure enums are the size of ints, for structure packing. @@ -389,6 +391,7 @@ } \ } while(0) #endif + #ifndef SDL_revcpy extern DECLSPEC void *SDLCALL SDL_revcpy(void *dst, const void *src, size_t len);