cpptrace/src/unwind/unwind_with_nothing.cpp
2023-11-08 21:32:34 -05:00

17 lines
245 B
C++

#ifdef CPPTRACE_UNWIND_WITH_NOTHING
#include "unwind.hpp"
#include <cstddef>
#include <vector>
namespace cpptrace {
namespace detail {
std::vector<frame_ptr> capture_frames(std::size_t, std::size_t) {
return {};
}
}
}
#endif