|
P4C
The P4 Compiler
|
Loading...
Searching...
No Matches
22#include "exceptions.h"
25#define LIB_STRINGIFY(x) #x
26#define LIB_TOSTRING(x) LIB_STRINGIFY(x)
28#define CHECK_NULL(a) \
30 if ((a) == nullptr) BUG(__FILE__ ":" LIB_TOSTRING(__LINE__) ": Null " #a); \