forgot to remove T arg from UNARY_T_FUN macro

master
Tibor Bizjak 2023-07-16 13:26:38 +02:00
parent fb131919a7
commit b127575211
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@
/* unary function */
#define UNARY_FUN(F) push(F(pop()))
/* unary function with tests */
#define UNARY_T_FUN(F, T, ...) \
#define UNARY_T_FUN(F, ...) \
do { double op = pop(); __VA_ARGS__ push(F(op)); } while (0)
/* commutative function */
#define COMM_FUN(F) push(F(pop(), pop()))