summaryrefslogtreecommitdiff
path: root/include/SDL_stdinc.h
diff options
context:
space:
mode:
authorHolmes Futrell <hfutrell@umail.ucsb.edu>2008-06-22 23:13:02 +0000
committerHolmes Futrell <hfutrell@umail.ucsb.edu>2008-06-22 23:13:02 +0000
commit2e2db9e30b208db6d5af2c76f79677bfe70f7aca (patch)
treef61e2d2aca35e35f5f116c36e03bf12ebc02ed1a /include/SDL_stdinc.h
parent8a9bcd66863005b45d82affde4c77498f3be5359 (diff)
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
Diffstat (limited to 'include/SDL_stdinc.h')
-rw-r--r--include/SDL_stdinc.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/SDL_stdinc.h b/include/SDL_stdinc.h
index 3df9e2a2..3c10337c 100644
--- a/include/SDL_stdinc.h
+++ b/include/SDL_stdinc.h
@@ -147,8 +147,10 @@ SDL_COMPILE_TIME_ASSERT(uint16, sizeof(Uint16) == 2);
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 @@ do { \
} \
} while(0)
#endif
+
#ifndef SDL_revcpy
extern DECLSPEC void *SDLCALL SDL_revcpy(void *dst, const void *src,
size_t len);