Skip to content

Commit aa97b1a

Browse files
authored
Fix missing namespace in stacktrace.qbk (#181)
1 parent 23e1213 commit aa97b1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/stacktrace.qbk

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ int main() {
163163
foo("test1");
164164
bar("test2");
165165
} catch (const std::exception& exc) {
166-
boost::stacktrace::stacktrace trace = boost::stacktrace::from_current_exception(); // <---
166+
boost::stacktrace::stacktrace trace = boost::stacktrace::stacktrace::from_current_exception(); // <---
167167
std::cerr << "Caught exception: " << exc.what() << ", trace:\n" << trace;
168168
}
169169
}

0 commit comments

Comments
 (0)