changeset 4439:ab63fdcf66af

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.
author Sam Lantinga <slouken@libsdl.org>
date Fri, 23 Apr 2010 02:15:05 -0700
parents 25e45611fa3d
children e3033ab628a1
files include/SDL_endian.h
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/include/SDL_endian.h	Tue Apr 20 07:16:42 2010 -0700
+++ b/include/SDL_endian.h	Fri Apr 23 02:15:05 2010 -0700
@@ -103,7 +103,7 @@
 static __inline__ Uint16
 SDL_Swap16(Uint16 x)
 {
-    return (Uint16)((x << 8) | (x >> 8));
+    return SDL_static_cast(Uint16, ((x << 8) | (x >> 8)));
 }
 #endif
 
@@ -143,8 +143,8 @@
 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