2022-09-05 14:13:51 +00:00
|
|
|
#pragma once
|
2022-10-16 16:23:33 +00:00
|
|
|
#include "panic/Panic.h"
|
2022-09-05 14:13:51 +00:00
|
|
|
|
2022-10-16 16:23:33 +00:00
|
|
|
#define ASSERT(expr) (bool)(expr) || panic("Assertion failed: " #expr)
|
2022-09-05 14:13:51 +00:00
|
|
|
|
2022-10-16 16:23:33 +00:00
|
|
|
#define TODO(message) panic("TODO: " message)
|