We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 50ee9f5 + 14157c7 commit 9860050Copy full SHA for 9860050
src/goto-programs/goto_trace.cpp
@@ -539,11 +539,10 @@ void show_full_goto_trace(
539
}
540
541
542
-void show_goto_stack_trace(
+static void show_goto_stack_trace(
543
messaget::mstreamt &out,
544
const namespacet &ns,
545
- const goto_tracet &goto_trace,
546
- const trace_optionst &options)
+ const goto_tracet &goto_trace)
547
{
548
// map from thread number to a call stack
549
std::map<unsigned, std::vector<goto_tracet::stepst::const_iterator>>
@@ -622,7 +621,7 @@ void show_goto_trace(
622
621
const trace_optionst &options)
623
624
if(options.stack_trace)
625
- show_goto_stack_trace(out, ns, goto_trace, options);
+ show_goto_stack_trace(out, ns, goto_trace);
626
else
627
show_full_goto_trace(out, ns, goto_trace, options);
628
0 commit comments