This commit is contained in:
wheremyfoodat 2023-07-09 14:50:22 +03:00
parent b51a1aae5e
commit 36710766c6

View file

@ -2,7 +2,6 @@
#include <climits> #include <climits>
#include <cstdarg> #include <cstdarg>
#include <cstdint> #include <cstdint>
#include <conio.h>
#include <iostream> #include <iostream>
#include <iterator> #include <iterator>
#include <sstream> #include <sstream>
@ -37,9 +36,9 @@ namespace Helpers {
std::cout << termcolor::on_red << "[FATAL] "; std::cout << termcolor::on_red << "[FATAL] ";
std::printf(fmt, args...); std::printf(fmt, args...);
std::cout << termcolor::reset << "\n"; std::cout << termcolor::reset << "\n";
std::cout << "Press any button to exit\n"; std::cout << "Press enter to exit\n";
getch(); getchar();
exit(1); exit(1);
} }