aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/call_stack.cpp
blob: b094aacaed80897ab9083715eb7950fd11ca5099 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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;
}