dropshell/source/src/utils/assert.hpp
Your Name 2b446f80a3
Some checks failed
Dropshell Test / Build_and_Test (push) Has been cancelled
dropshell release 2025.0518.1355
2025-05-18 13:55:39 +12:00

13 lines
253 B
C++

#ifndef ASSERT_HPP
#define ASSERT_HPP
#include "output.hpp"
#define ASSERT(condition, message) \
if (!(condition)) { \
dropshell::error << "Assertion failed: " << message << std::endl; \
std::exit(1); \
}
#endif // ASSERT_HPP