done
This commit is contained in:
parent
5e8b99c02a
commit
5db5031558
5 changed files with 203 additions and 196 deletions
8
tests/check.hpp
Normal file
8
tests/check.hpp
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#ifndef CHECK_HPP
|
||||
#define CHECK_HPP
|
||||
|
||||
#include <cstdlib>
|
||||
|
||||
#define ASSERT(cond) if (!(cond)) { std::abort(); }
|
||||
|
||||
#endif /* CHECK_HPP */
|
||||
Loading…
Add table
Add a link
Reference in a new issue