mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-04-03 16:32:57 +00:00
parent
3b0a69fffe
commit
242604b3ef
2 changed files with 7 additions and 1 deletions
2
exec.c
2
exec.c
|
@ -621,7 +621,7 @@ static qcvm_parameter *main_params = NULL;
|
|||
if (prog->argc != (num)) { \
|
||||
prog->vmerror++; \
|
||||
fprintf(stderr, "ERROR: invalid number of arguments for %s: %i, expected %i\n", \
|
||||
__FUNCTION__, prog->argc, (num)); \
|
||||
GMQCC_FUNCTION, prog->argc, (num)); \
|
||||
return -1; \
|
||||
} \
|
||||
} while (0)
|
||||
|
|
6
gmqcc.h
6
gmqcc.h
|
@ -103,6 +103,7 @@ GMQCC_IND_STRING(GMQCC_VERSION_PATCH) \
|
|||
#if defined(__GNUC__) || defined(__CLANG__)
|
||||
# define GMQCC_WARN __attribute__((warn_unused_result))
|
||||
# define GMQCC_USED __attribute__((used))
|
||||
# define GMQCC_FUNCTION __func__
|
||||
#else
|
||||
# define GMQCC_WARN
|
||||
# define GMQCC_USED
|
||||
|
@ -134,10 +135,15 @@ GMQCC_IND_STRING(GMQCC_VERSION_PATCH) \
|
|||
*/
|
||||
#elif defined(_MSC_VER)
|
||||
# define GMQCC_INLINE __forceinline
|
||||
# define GMQCC_FUNCTION __FUNCTION__
|
||||
#else
|
||||
# define GMQCC_INLINE
|
||||
#endif /*! __STDC_VERSION__ */
|
||||
|
||||
#ifndef GMQCC_FUNCTION
|
||||
# define GMQCC_FUNCTION "<unknown-function>"
|
||||
#endif
|
||||
|
||||
/*
|
||||
* noreturn is present in GCC and clang
|
||||
* it's required for _ast_node_destory otherwise -Wmissing-noreturn
|
||||
|
|
Loading…
Reference in a new issue