@@ -39,7 +39,7 @@ show_goto_functions_jsont::show_goto_functions_jsont(const namespacet &ns):
3939
4040/* ******************************************************************\
4141
42- Function: show_goto_functions_jsont::show_goto_functions
42+ Function: show_goto_functions_jsont::convert
4343
4444 Inputs:
4545 goto_functions - the goto functions that make up the program
@@ -51,7 +51,7 @@ Function: show_goto_functions_jsont::show_goto_functions
5151
5252\*******************************************************************/
5353
54- json_objectt show_goto_functions_jsont::get_goto_functions (
54+ json_objectt show_goto_functions_jsont::convert (
5555 const goto_functionst &goto_functions)
5656{
5757 json_arrayt json_functions;
@@ -131,7 +131,7 @@ json_objectt show_goto_functions_jsont::get_goto_functions(
131131
132132/* ******************************************************************\
133133
134- Function: show_goto_functions_jsont::print_goto_functions
134+ Function: show_goto_functions_jsont::operator()
135135
136136 Inputs:
137137 goto_functions - the goto functions that make up the program
@@ -147,7 +147,7 @@ Function: show_goto_functions_jsont::print_goto_functions
147147
148148\*******************************************************************/
149149
150- void show_goto_functions_jsont::print_goto_functions (
150+ void show_goto_functions_jsont::operator () (
151151 const goto_functionst &goto_functions,
152152 std::ostream &out,
153153 bool append)
@@ -156,5 +156,5 @@ void show_goto_functions_jsont::print_goto_functions(
156156 {
157157 out << " ,\n " ;
158158 }
159- out << get_goto_functions (goto_functions);
159+ out << convert (goto_functions);
160160}
0 commit comments