Files

12 lines
909 B
C
Raw Permalink Normal View History

2026-03-28 16:54:11 +11:00
#pragma once
#include <spdlog/spdlog.h>
#define CHECK(condition) \
do { \
if (!(condition)) { \
spdlog::error("Assertion failed: ({}), function {}, file {}, line {}.", #condition, __FUNCTION__, __FILE__, __LINE__); \
abort(); \
} \
} while (false);