2021-01-18 18:25:47 -06:00
|
|
|
#include "Util.h"
|
|
|
|
|
2021-01-19 16:36:10 -06:00
|
|
|
void Util::Die(const char * msg) {
|
|
|
|
std::cerr << msg << std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Util::Die(const char * msg, const char * more) {
|
|
|
|
std::cerr << msg << more << std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Util::Die(std::string msg) {
|
|
|
|
std::cerr << msg << std::endl;
|
|
|
|
exit(1);
|
2021-01-18 18:25:47 -06:00
|
|
|
}
|