9 lines
267 B
C
9 lines
267 B
C
#pragma once
|
|
#include "panic/Panic.h"
|
|
|
|
#define STRINGIZE(x) #x
|
|
#define STRINGIZE_VALUE_OF(x) STRINGIZE(x)
|
|
|
|
// clang-format off
|
|
#define ensure(expr) (bool)(expr) || panic("Check failed at " __FILE__ ", line " STRINGIZE_VALUE_OF(__LINE__) ": " #expr)
|
|
// clang-format on
|