File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -394,7 +394,8 @@ bool bmc_covert::operator()()
394
394
json_objectt json_input;
395
395
json_input[" id" ]=json_stringt (id2string (step.io_id ));
396
396
if (step.io_args .size ()==1 )
397
- json_input[" value" ]=json (step.io_args .front (), bmc.ns );
397
+ json_input[" value" ]=
398
+ json (step.io_args .front (), bmc.ns , ID_unknown);
398
399
json_test.push_back (json_input);
399
400
}
400
401
}
Original file line number Diff line number Diff line change @@ -192,7 +192,7 @@ void convert(
192
192
DATA_INVARIANT (
193
193
step.full_lhs_value .is_not_nil (),
194
194
" full_lhs_value in assignment must not be nil" );
195
- full_lhs_value=json (step.full_lhs_value , ns);
195
+ full_lhs_value=json (step.full_lhs_value , ns, ID_unknown );
196
196
}
197
197
198
198
json_assignment[" value" ]=full_lhs_value;
Original file line number Diff line number Diff line change @@ -164,7 +164,8 @@ void symex_parse_optionst::report_cover(
164
164
json_objectt json_input;
165
165
json_input[" id" ]=json_stringt (id2string (step.io_id ));
166
166
if (step.io_args .size ()==1 )
167
- json_input[" value" ]=json (step.io_args .front (), ns);
167
+ json_input[" value" ]=
168
+ json (step.io_args .front (), ns, ID_unknown);
168
169
json_test.push_back (json_input);
169
170
}
170
171
}
Original file line number Diff line number Diff line change @@ -23,12 +23,12 @@ class namespacet;
23
23
json_objectt json (
24
24
const exprt &,
25
25
const namespacet &,
26
- const irep_idt &mode=ID_unknown );
26
+ const irep_idt &mode);
27
27
28
28
json_objectt json (
29
29
const typet &,
30
30
const namespacet &,
31
- const irep_idt &mode=ID_unknown );
31
+ const irep_idt &mode);
32
32
33
33
json_objectt json (const source_locationt &);
34
34
You can’t perform that action at this time.
0 commit comments