diff include/SDL_stdinc.h @ 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 7ae1c419b626
children 6259afb046c5
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);