17 lines
290 B
C++
17 lines
290 B
C++
#include "Util.h"
|
|
|
|
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);
|
|
}
|