# HG changeset patch # User Sam Lantinga # Date 1272014046 25200 # Node ID 7a53f8efc017b26badf6f84554cbfbbc45541294 # Parent d660ca4f7b1fa662a34bf834a2c2a4b67b4440c5 esigra 2010-04-17 03:53:57 PDT If this header file is supposed to be includable from C++ code, the code should of course use one of the SDL_*_cast macros from SDL_stdinc.h. diff -r d660ca4f7b1f -r 7a53f8efc017 include/SDL_endian.h --- a/include/SDL_endian.h Tue Apr 13 21:46:10 2010 -0700 +++ b/include/SDL_endian.h Fri Apr 23 02:14:06 2010 -0700 @@ -94,7 +94,7 @@ } #else static __inline__ Uint16 SDL_Swap16(Uint16 x) { - return (Uint16)((x<<8)|(x>>8)); + return SDL_static_cast(Uint16, ((x<<8)|(x>>8))); } #endif @@ -129,7 +129,7 @@ } #else static __inline__ Uint32 SDL_Swap32(Uint32 x) { - return (Uint32)((x<<24)|((x<<8)&0x00FF0000)|((x>>8)&0x0000FF00)|(x>>24)); + return SDL_static_cast(Uint32, ((x<<24)|((x<<8)&0x00FF0000)|((x>>8)&0x0000FF00)|(x>>24))); } #endif