blob: c4358894f6a9e3a0405f7c3c486bab6ef31fe520 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef ERROR_HPP_
#define ERROR_HPP_
#include <string>
#include <iostream>
#define UserError(w) _UserError(__FILE__, __LINE__, w)
#define UserAssert(c, e) if (!(c)) { UserError(e); }
inline void _UserError(const char* file, int line, const std::string& why)
{
std::cout << file << ':' << line << ": error: " << why << "!\n";
abort();
}
#endif // ERROR_HPP_
|