1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-01 18:43:33 +02:00
VVVVVV/desktop_version/src/Unused.h
Misa 29d2637abd Factor out UNUSED macro to header file
This is so it can be used in other files without having to copy-paste
the define.
2021-05-25 15:23:34 -04:00

7 lines
92 B
C

#ifndef UNUSED_H
#define UNUSED_H
#define UNUSED(expr) (void)(expr)
#endif /* UNUSED_H */