aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/call_stack.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test/call_stack.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/call_stack.cpp b/test/call_stack.cpp
index c1fb0fd..e193b01 100644
--- a/test/call_stack.cpp
+++ b/test/call_stack.cpp
@@ -6,7 +6,7 @@
namespace test {
void call_stack() {
- pdb::DbgHelp dbghelp{true};
+ const auto dbghelp = pdb::DbgHelp::current_process();
const auto call_stack = pdb::CallStack::capture();
for (std::size_t i = 0; i < call_stack.length; ++i)
std::cout << pdb::format_address(call_stack.frames[i]) << ' '