mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-29 15:51:45 +00:00
fix C --pedantic warnings
* extra semicolon in struct or union specified * ISO C does not allow extra ‘;’ outside of a function
This commit is contained in:
parent
65f8c171c5
commit
12b27e631d
1 changed files with 2 additions and 2 deletions
|
@ -65,7 +65,7 @@ typedef unsigned char byte;
|
||||||
// must be used as prefix (YQ2_ATTR_NORETURN void bla();)!
|
// must be used as prefix (YQ2_ATTR_NORETURN void bla();)!
|
||||||
#define YQ2_ATTR_NORETURN __attribute__ ((noreturn))
|
#define YQ2_ATTR_NORETURN __attribute__ ((noreturn))
|
||||||
#elif defined(_MSC_VER)
|
#elif defined(_MSC_VER)
|
||||||
// Note: We prefer VS2019 16.8 or newer in C11 mode (/std:c11),
|
// Note: We prefer VS2019 16.8 or newer in C11 mode (/std:c11),
|
||||||
// then the __STDC_VERSION__ >= 201112L case above is used
|
// then the __STDC_VERSION__ >= 201112L case above is used
|
||||||
|
|
||||||
#define YQ2_ALIGNAS_SIZE(SIZE) __declspec(align(SIZE))
|
#define YQ2_ALIGNAS_SIZE(SIZE) __declspec(align(SIZE))
|
||||||
|
@ -148,7 +148,7 @@ typedef unsigned char byte;
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
#define PRINTF_ATTR(FMT, VARGS)
|
#define PRINTF_ATTR(FMT, VARGS)
|
||||||
#else // at least GCC/mingw and clang support this
|
#else // at least GCC/mingw and clang support this
|
||||||
#define PRINTF_ATTR(FMT, VARGS) __attribute__((format(printf, FMT , VARGS )));
|
#define PRINTF_ATTR(FMT, VARGS) __attribute__((format(printf, FMT , VARGS )))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* per-level limits */
|
/* per-level limits */
|
||||||
|
|
Loading…
Reference in a new issue