Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
disabled compile time assertion ... no 64 bit primitive types availab…
Browse files Browse the repository at this point in the history
…le on iPhone (it appears)
  • Loading branch information
Holmes Futrell committed Jun 22, 2008
1 parent c96fa55 commit fd41ed0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions include/SDL_stdinc.h
Expand Up @@ -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.
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit fd41ed0

Please sign in to comment.