8 lines
133 B
C++
8 lines
133 B
C++
#ifndef CHECK_HPP
|
|
#define CHECK_HPP
|
|
|
|
#include <cstdlib>
|
|
|
|
#define ASSERT(cond) if (!(cond)) { std::abort(); }
|
|
|
|
#endif /* CHECK_HPP */
|