blob: b094aacaed80897ab9083715eb7950fd11ca5099 (
plain) (
tree)
|
|
// Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "PDB repository" project.
// For details, see https://github.com/egor-tensin/pdb-repo.
// Distributed under the MIT License.
#include <test_lib.hpp>
#include <boost/nowide/iostream.hpp>
#include <exception>
int main() {
try {
test_ns::print_call_stack();
} catch (const std::exception& e) {
boost::nowide::cerr << e.what() << '\n';
return 1;
}
return 0;
}
|