@@ -122,7 +122,7 @@ void ai_baset::output(
122
122
find_state (i_it).output (out, *this , ns);
123
123
out << " \n " ;
124
124
#if 1
125
- goto_program.output_instruction (ns, identifier, out, i_it);
125
+ goto_program.output_instruction (ns, identifier, out, * i_it);
126
126
out << " \n " ;
127
127
#endif
128
128
}
@@ -174,7 +174,7 @@ jsont ai_baset::output_json(
174
174
175
175
// Ideally we need output_instruction_json
176
176
std::ostringstream out;
177
- goto_program.output_instruction (ns, identifier, out, i_it);
177
+ goto_program.output_instruction (ns, identifier, out, * i_it);
178
178
location[" instruction" ]=json_stringt (out.str ());
179
179
180
180
contents.push_back (location);
@@ -235,7 +235,7 @@ xmlt ai_baset::output_xml(
235
235
236
236
// Ideally we need output_instruction_xml
237
237
std::ostringstream out;
238
- goto_program.output_instruction (ns, identifier, out, i_it);
238
+ goto_program.output_instruction (ns, identifier, out, * i_it);
239
239
location.set_attribute (" instruction" , out.str ());
240
240
241
241
function_body.new_element (location);
0 commit comments