@@ -145,7 +145,7 @@ class ai_baset
145
145
const goto_programt &goto_program,
146
146
std::ostream &out) const
147
147
{
148
- output (ns, goto_program, " " , out);
148
+ output (ns, " " , goto_program , out);
149
149
}
150
150
151
151
// / Output the abstract states for a function
@@ -154,7 +154,7 @@ class ai_baset
154
154
const goto_functionst::goto_functiont &goto_function,
155
155
std::ostream &out) const
156
156
{
157
- output (ns, goto_function.body , " " , out);
157
+ output (ns, " " , goto_function.body , out);
158
158
}
159
159
160
160
// / Output the abstract states for the whole program as JSON
@@ -175,15 +175,15 @@ class ai_baset
175
175
const namespacet &ns,
176
176
const goto_programt &goto_program) const
177
177
{
178
- return output_json (ns, goto_program, " " );
178
+ return output_json (ns, " " , goto_program );
179
179
}
180
180
181
181
// / Output the abstract states for a single function as JSON
182
182
jsont output_json (
183
183
const namespacet &ns,
184
184
const goto_functionst::goto_functiont &goto_function) const
185
185
{
186
- return output_json (ns, goto_function.body , " " );
186
+ return output_json (ns, " " , goto_function.body );
187
187
}
188
188
189
189
// / Output the abstract states for the whole program as XML
@@ -204,7 +204,7 @@ class ai_baset
204
204
const namespacet &ns,
205
205
const goto_programt &goto_program) const
206
206
{
207
- return output_xml (ns, goto_program, " " );
207
+ return output_xml (ns, " " , goto_program );
208
208
}
209
209
210
210
// / Output the abstract states for a single function as XML
@@ -259,8 +259,8 @@ class ai_baset
259
259
// / \return The JSON object
260
260
virtual jsont output_json (
261
261
const namespacet &ns,
262
- const goto_programt &goto_program ,
263
- const irep_idt &identifier ) const ;
262
+ const irep_idt &identifier ,
263
+ const goto_programt &goto_program ) const ;
264
264
265
265
// / Output the abstract states for a single function as XML
266
266
// / \param ns: The namespace
@@ -270,8 +270,8 @@ class ai_baset
270
270
// / \return The XML object
271
271
virtual xmlt output_xml (
272
272
const namespacet &ns,
273
- const goto_programt &goto_program ,
274
- const irep_idt &identifier ) const ;
273
+ const irep_idt &identifier ,
274
+ const goto_programt &goto_program ) const ;
275
275
276
276
// / The work queue, sorted by location number
277
277
typedef std::map<unsigned , locationt> working_sett;
0 commit comments