mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 19:28:43 +12:00
Remove GCC specific variadic macro syntax
This commit is contained in:
parent
e89ecd192b
commit
10ca726752
1 changed files with 2 additions and 2 deletions
|
@ -470,8 +470,8 @@ void StaticAnalyse(void* ptr, u32 size, u32 base);
|
||||||
void StaticExecute(u32 code);
|
void StaticExecute(u32 code);
|
||||||
void StaticFinalize();
|
void StaticFinalize();
|
||||||
|
|
||||||
#define REG_SUB(module, group, name, args...) \
|
#define REG_SUB(module, group, name, ...) \
|
||||||
static const u64 name ## _table[] = {args, 0}; \
|
static const u64 name ## _table[] = {__VA_ARGS__ , 0}; \
|
||||||
module.AddFuncSub(group, name ## _table, #name, name)
|
module.AddFuncSub(group, name ## _table, #name, name)
|
||||||
|
|
||||||
#define REG_SUB_EMPTY(module, group, name,...) \
|
#define REG_SUB_EMPTY(module, group, name,...) \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue