diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/common/cbasetypes.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/common/cbasetypes.h b/src/common/cbasetypes.h index b377d6ef0..488e4db49 100644 --- a/src/common/cbasetypes.h +++ b/src/common/cbasetypes.h @@ -205,15 +205,15 @@ typedef uint64 uintptr; typedef int64 intptr; #define UINTPTR_MIN UINT64_MIN #define UINTPTR_MAX UINT64_MAX -#define INTPTR_MIN INT64_MIN; -#define INTPTR_MAX INT64_MAX; +#define INTPTR_MIN INT64_MIN +#define INTPTR_MAX INT64_MAX #else typedef uint32 uintptr; typedef int32 intptr; #define UINTPTR_MIN UINT32_MIN #define UINTPTR_MAX UINT32_MAX -#define INTPTR_MIN INT32_MIN; -#define INTPTR_MAX INT32_MAX; +#define INTPTR_MIN INT32_MIN +#define INTPTR_MAX INT32_MAX #endif @@ -254,7 +254,7 @@ typedef char bool; #define true (1==1) ////////////////////////////// -#endif // not cplusplus +#endif // not __cplusplus ////////////////////////////// ////////////////////////////////////////////////////////////////////////// |