1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#include <test_lib.hpp> #include <boost/nowide/iostream.hpp> #include <exception> int main() { try { test::print_call_stack(); } catch (const std::exception& e) { boost::nowide::cerr << e.what() << '\n'; return 1; } return 0; }