Commit 2e2db9e3 authored by Holmes Futrell's avatar Holmes Futrell

disabled compile time assertion ... no 64 bit primitive types available on iPhone (it appears)

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402780
parent 8a9bcd66
...@@ -147,8 +147,10 @@ SDL_COMPILE_TIME_ASSERT(uint16, sizeof(Uint16) == 2); ...@@ -147,8 +147,10 @@ SDL_COMPILE_TIME_ASSERT(uint16, sizeof(Uint16) == 2);
SDL_COMPILE_TIME_ASSERT(sint16, sizeof(Sint16) == 2); SDL_COMPILE_TIME_ASSERT(sint16, sizeof(Sint16) == 2);
SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4); SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4);
SDL_COMPILE_TIME_ASSERT(sint32, sizeof(Sint32) == 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 */ #endif /* DOXYGEN_SHOULD_IGNORE_THIS */
/* Check to make sure enums are the size of ints, for structure packing. /* Check to make sure enums are the size of ints, for structure packing.
...@@ -389,6 +391,7 @@ do { \ ...@@ -389,6 +391,7 @@ do { \
} \ } \
} while(0) } while(0)
#endif #endif
#ifndef SDL_revcpy #ifndef SDL_revcpy
extern DECLSPEC void *SDLCALL SDL_revcpy(void *dst, const void *src, extern DECLSPEC void *SDLCALL SDL_revcpy(void *dst, const void *src,
size_t len); size_t len);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment