blob: ef61c91165e6b1797daf46f60ab38162b2c14a84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef ERROR_HPP_
#define ERROR_HPP_
#include <string>
#include <iostream>
inline void UserError(const std::string& why)
{
std::cout << "User error: " << why << "!\n";
abort();
}
#endif // ERROR_HPP_
|