Fix "no effect" and "unused variable" compile warnings (#12473)

This commit is contained in:
Ludy
2018-11-19 00:54:00 +01:00
committed by Scott Lahteine
parent 5a4fd8e0a6
commit c0b75f49b6
2 changed files with 3 additions and 1 deletions

View File

@ -196,7 +196,7 @@
#define MMM_TO_MMS(MM_M) ((MM_M)/60.0f)
#define MMS_TO_MMM(MM_S) ((MM_S)*60.0f)
#define NOOP (0)
#define NOOP (void(0))
#define CEILING(x,y) (((x) + (y) - 1) / (y))