 |
P4C
The P4 Compiler
|
Loading...
Searching...
No Matches
13#include "exceptions.h"
16#define LIB_STRINGIFY(x) #x
17#define LIB_TOSTRING(x) LIB_STRINGIFY(x)
19#define CHECK_NULL(a) \
21 if ((a) == nullptr) BUG(__FILE__ ":" LIB_TOSTRING(__LINE__) ": Null " #a); \