@@ -207,7 +207,8 @@ class change_impactt
207
207
const goto_modelt &model_old,
208
208
const goto_modelt &model_new,
209
209
impact_modet impact_mode,
210
- bool compact_output);
210
+ bool compact_output,
211
+ message_handlert &message_handler);
211
212
212
213
void operator ()();
213
214
@@ -289,19 +290,20 @@ class change_impactt
289
290
};
290
291
291
292
change_impactt::change_impactt (
292
- const goto_modelt &model_old,
293
- const goto_modelt &model_new,
294
- impact_modet _impact_mode,
295
- bool _compact_output):
296
- impact_mode(_impact_mode),
297
- compact_output(_compact_output),
298
- old_goto_functions(model_old.goto_functions),
299
- ns_old(model_old.symbol_table),
300
- new_goto_functions(model_new.goto_functions),
301
- ns_new(model_new.symbol_table),
302
- unified_diff(model_old, model_new),
303
- old_dep_graph(ns_old),
304
- new_dep_graph(ns_new)
293
+ const goto_modelt &model_old,
294
+ const goto_modelt &model_new,
295
+ impact_modet _impact_mode,
296
+ bool _compact_output,
297
+ message_handlert &message_handler)
298
+ : impact_mode(_impact_mode),
299
+ compact_output(_compact_output),
300
+ old_goto_functions(model_old.goto_functions),
301
+ ns_old(model_old.symbol_table),
302
+ new_goto_functions(model_new.goto_functions),
303
+ ns_new(model_new.symbol_table),
304
+ unified_diff(model_old, model_new),
305
+ old_dep_graph(ns_old, message_handler),
306
+ new_dep_graph(ns_new, message_handler)
305
307
{
306
308
// syntactic difference?
307
309
if (!unified_diff ())
@@ -757,8 +759,10 @@ void change_impact(
757
759
const goto_modelt &model_old,
758
760
const goto_modelt &model_new,
759
761
impact_modet impact_mode,
760
- bool compact_output)
762
+ bool compact_output,
763
+ message_handlert &message_handler)
761
764
{
762
- change_impactt c (model_old, model_new, impact_mode, compact_output);
765
+ change_impactt c (
766
+ model_old, model_new, impact_mode, compact_output, message_handler);
763
767
c ();
764
768
}
0 commit comments