dropshell/src/utils/assert.hpp
Your Name 4b4b99634c
Some checks failed
Dropshell Test / Build_and_Test (push) Has been cancelled
Super simple assert for now.
2025-05-13 21:46:04 +12:00

12 lines
224 B
C++

#ifndef ASSERT_HPP
#define ASSERT_HPP
#define ASSERT(condition, message) \
if (!(condition)) { \
std::cerr << "Assertion failed: " << message << std::endl; \
std::exit(1); \
}
#endif // ASSERT_HPP