File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -539,11 +539,10 @@ void show_full_goto_trace(
539
539
}
540
540
}
541
541
542
- void show_goto_stack_trace (
542
+ static void show_goto_stack_trace (
543
543
messaget::mstreamt &out,
544
544
const namespacet &ns,
545
- const goto_tracet &goto_trace,
546
- const trace_optionst &options)
545
+ const goto_tracet &goto_trace)
547
546
{
548
547
// map from thread number to a call stack
549
548
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
622
{
624
623
if (options.stack_trace )
625
- show_goto_stack_trace (out, ns, goto_trace, options );
624
+ show_goto_stack_trace (out, ns, goto_trace);
626
625
else
627
626
show_full_goto_trace (out, ns, goto_trace, options);
628
627
}
You can’t perform that action at this time.
0 commit comments