source: XIOS3/trunk/extern/cpptrace/src/unwind_with_nothing.cpp

Last change on this file was 2573, checked in by ymipsl, 9 months ago

create new external source lib : cpptrace, for statck trace output
YM

File size: 275 bytes
Line 
1#include "cpptrace_default.hpp"
2#ifdef CPPTRACE_UNWIND_WITH_NOTHING
3
4#include "unwind.hpp"
5
6#include <cstddef>
7#include <vector>
8
9namespace cpptrace {
10    namespace detail {
11        std::vector<void*> capture_frames(size_t) {
12            return {};
13        }
14    }
15}
16
17#endif
Note: See TracBrowser for help on using the repository browser.