fixed compiler warning

This commit is contained in:
Lewis Van Winkle
2017-04-03 13:07:32 -05:00
parent 5dc1f2bcdc
commit ce9d1e5d4e

View File

@@ -185,7 +185,7 @@ static double sub(double a, double b) {return a - b;}
static double mul(double a, double b) {return a * b;}
static double divide(double a, double b) {return a / b;}
static double negate(double a) {return -a;}
static double comma(double a, double b) {return b;}
static double comma(double a, double b) {(void)a; return b;}
void next_token(state *s) {