nngn
Loading...
Searching...
No Matches
macros.h
Go to the documentation of this file.
1#ifndef NNGN_UTILS_MACROS_H
2#define NNGN_UTILS_MACROS_H
3
4#define NNGN_APPLY(f, x) f(x)
5#define NNGN_APPLY2(f, x0, x1) f(x0, x1)
6#define NNGN_IGNORE(f, x)
7#define NNGN_IGNORE2(f, x0, x1)
8
9#endif