Remove UNUSED(x) macro. No longer needed.

This commit is contained in:
Alex Helfet 2017-03-23 04:37:51 +00:00
parent a93ae12705
commit 57d0ffea33

View file

@ -24,11 +24,6 @@
typedef intmax_t ssize_t;
#endif
// Macro UNUSED(x) silences compiler warnings about unused parameter or variable `x`.
#ifndef UNUSED
#define UNUSED(x) (void)(x)
#endif
// Cross-platform macro ALIGNED_(x) aligns a struct by `x` bytes.
#ifdef _MSC_VER
#define ALIGNED_(x) __declspec(align(x))