File tree Expand file tree Collapse file tree 3 files changed +0
-29
lines changed Expand file tree Collapse file tree 3 files changed +0
-29
lines changed Original file line number Diff line number Diff line change @@ -13,25 +13,6 @@ Date: June 2003
13
13
14
14
#include " goto_functions.h"
15
15
16
- void goto_functionst::output (
17
- const namespacet &ns,
18
- std::ostream &out) const
19
- {
20
- for (const auto &fun : function_map)
21
- {
22
- if (fun.second .body_available ())
23
- {
24
- out << " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n " ;
25
-
26
- const symbolt &symbol=ns.lookup (fun.first );
27
- out << symbol.display_name () << " /* " << symbol.name << " */\n " ;
28
- fun.second .body .output (ns, symbol.name , out);
29
-
30
- out << std::flush;
31
- }
32
- }
33
- }
34
-
35
16
void goto_functionst::compute_location_numbers ()
36
17
{
37
18
unused_location_number = 0 ;
Original file line number Diff line number Diff line change @@ -72,10 +72,6 @@ class goto_functionst
72
72
function_map.clear ();
73
73
}
74
74
75
- void output (
76
- const namespacet &ns,
77
- std::ostream &out) const ;
78
-
79
75
void compute_location_numbers ();
80
76
void compute_location_numbers (goto_programt &);
81
77
void compute_loop_numbers ();
Original file line number Diff line number Diff line change @@ -37,12 +37,6 @@ class goto_modelt : public abstract_goto_modelt
37
37
goto_functions.clear ();
38
38
}
39
39
40
- void output (std::ostream &out) const
41
- {
42
- namespacet ns (symbol_table);
43
- goto_functions.output (ns, out);
44
- }
45
-
46
40
goto_modelt ()
47
41
{
48
42
}
You can’t perform that action at this time.
0 commit comments