@@ -39,7 +39,7 @@ show_goto_functions_jsont::show_goto_functions_jsont(const namespacet &ns):
39
39
40
40
/* ******************************************************************\
41
41
42
- Function: show_goto_functions_jsont::show_goto_functions
42
+ Function: show_goto_functions_jsont::convert
43
43
44
44
Inputs:
45
45
goto_functions - the goto functions that make up the program
@@ -51,7 +51,7 @@ Function: show_goto_functions_jsont::show_goto_functions
51
51
52
52
\*******************************************************************/
53
53
54
- json_objectt show_goto_functions_jsont::get_goto_functions (
54
+ json_objectt show_goto_functions_jsont::convert (
55
55
const goto_functionst &goto_functions)
56
56
{
57
57
json_arrayt json_functions;
@@ -131,7 +131,7 @@ json_objectt show_goto_functions_jsont::get_goto_functions(
131
131
132
132
/* ******************************************************************\
133
133
134
- Function: show_goto_functions_jsont::print_goto_functions
134
+ Function: show_goto_functions_jsont::operator()
135
135
136
136
Inputs:
137
137
goto_functions - the goto functions that make up the program
@@ -147,7 +147,7 @@ Function: show_goto_functions_jsont::print_goto_functions
147
147
148
148
\*******************************************************************/
149
149
150
- void show_goto_functions_jsont::print_goto_functions (
150
+ void show_goto_functions_jsont::operator () (
151
151
const goto_functionst &goto_functions,
152
152
std::ostream &out,
153
153
bool append)
@@ -156,5 +156,5 @@ void show_goto_functions_jsont::print_goto_functions(
156
156
{
157
157
out << " ,\n " ;
158
158
}
159
- out << get_goto_functions (goto_functions);
159
+ out << convert (goto_functions);
160
160
}
0 commit comments