Simple-Web-Server/tests/check.hpp
Andrey Potapov 5db5031558 done
2019-02-13 16:29:27 +01:00

8 lines
133 B
C++

#ifndef CHECK_HPP
#define CHECK_HPP
#include <cstdlib>
#define ASSERT(cond) if (!(cond)) { std::abort(); }
#endif /* CHECK_HPP */