This commit is contained in:
Andrey Potapov 2019-02-13 16:29:27 +01:00
commit 5db5031558
5 changed files with 203 additions and 196 deletions

8
tests/check.hpp Normal file
View file

@ -0,0 +1,8 @@
#ifndef CHECK_HPP
#define CHECK_HPP
#include <cstdlib>
#define ASSERT(cond) if (!(cond)) { std::abort(); }
#endif /* CHECK_HPP */