diff options
author | David Ludwig <dludwig@pobox.com> | 2013-10-27 21:26:46 -0400 |
---|---|---|
committer | David Ludwig <dludwig@pobox.com> | 2013-10-27 21:26:46 -0400 |
commit | 529fcd3ee3a7f5fb09f31f30eeac72848a50b129 (patch) | |
tree | d3667c5da39b896d939f6bc24d7cfc3114322c7c /include/SDL_stdinc.h | |
parent | 4fb2b75ec9ebe3d8af5cb435526649ff31b5c2f9 (diff) | |
parent | e1968a60e067d03f9b09a1abcfc4cbae7a07429c (diff) |
WinRT: merged with SDL 2.0.1 codebase
Diffstat (limited to 'include/SDL_stdinc.h')
-rw-r--r-- | include/SDL_stdinc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/SDL_stdinc.h b/include/SDL_stdinc.h index e4a71d35c1..7a6557a8e7 100644 --- a/include/SDL_stdinc.h +++ b/include/SDL_stdinc.h @@ -99,7 +99,7 @@ * Use proper C++ casts when compiled as C++ to be compatible with the option * -Wold-style-cast of GCC (and -Werror=old-style-cast in GCC 4.2 and above). */ -/*@{*/ +/* @{ */ #ifdef __cplusplus #define SDL_reinterpret_cast(type, expression) reinterpret_cast<type>(expression) #define SDL_static_cast(type, expression) static_cast<type>(expression) @@ -109,7 +109,7 @@ #define SDL_static_cast(type, expression) ((type)(expression)) #define SDL_const_cast(type, expression) ((type)(expression)) #endif -/*@}*//*Cast operators*/ +/* @} *//* Cast operators */ /* Define a four character code as a Uint32 */ #define SDL_FOURCC(A, B, C, D) \ @@ -121,7 +121,7 @@ /** * \name Basic data types */ -/*@{*/ +/* @{ */ typedef enum { @@ -163,7 +163,7 @@ typedef int64_t Sint64; */ typedef uint64_t Uint64; -/*@}*//*Basic data types*/ +/* @} *//* Basic data types */ #define SDL_COMPILE_TIME_ASSERT(name, x) \ |