summaryrefslogtreecommitdiff
path: root/include/SDL_stdinc.h
diff options
context:
space:
mode:
authorGabriel Jacobo <gabomdq@gmail.com>2013-08-21 09:43:09 -0300
committerGabriel Jacobo <gabomdq@gmail.com>2013-08-21 09:43:09 -0300
commit871473e032b342516b6a57e3b9819fea7dda8026 (patch)
tree8d862d5b5d83f3a42a8d08a54e379fcf8f56637b /include/SDL_stdinc.h
parent0382f2f7640f87e6a833862795bfd8972dc04813 (diff)
OCD fixes: Adds a space before */
Diffstat (limited to 'include/SDL_stdinc.h')
-rw-r--r--include/SDL_stdinc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/SDL_stdinc.h b/include/SDL_stdinc.h
index 7fa9c1049f..6f9c23cacf 100644
--- a/include/SDL_stdinc.h
+++ b/include/SDL_stdinc.h
@@ -89,7 +89,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)
@@ -99,7 +99,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) \
@@ -111,7 +111,7 @@
/**
* \name Basic data types
*/
-/*@{*/
+/*@{ */
typedef enum
{
@@ -153,7 +153,7 @@ typedef int64_t Sint64;
*/
typedef uint64_t Uint64;
-/*@}*//*Basic data types*/
+/*@} *//*Basic data types */
#define SDL_COMPILE_TIME_ASSERT(name, x) \