summaryrefslogtreecommitdiffstats
path: root/src/common/unused.h
blob: 98e21a2e6e29b51101fe0bac508d373e6000ee2d (plain) (blame)
1
2
3
4
5
6
#pragma once

static inline void ffUnused(int dummy, ...) {
    (void) dummy;
}
#define FF_UNUSED(...) ffUnused(0, __VA_ARGS__);