File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ unified_difft::get_diff(const irep_idt &function) const
54
54
unified_difft::goto_program_difft unified_difft::get_diff (
55
55
const goto_programt &old_goto_program,
56
56
const goto_programt &new_goto_program,
57
- const differencest &differences)
57
+ const differencest &differences) const
58
58
{
59
59
goto_programt::instructionst::const_iterator old_it =
60
60
old_goto_program.instructions .begin ();
@@ -148,7 +148,7 @@ void unified_difft::lcss(
148
148
const irep_idt &identifier,
149
149
const goto_programt &old_goto_program,
150
150
const goto_programt &new_goto_program,
151
- differencest &differences)
151
+ differencest &differences) const
152
152
{
153
153
std::size_t old_count = old_goto_program.instructions .size ();
154
154
std::size_t new_count = new_goto_program.instructions .size ();
Original file line number Diff line number Diff line change @@ -61,16 +61,16 @@ class unified_difft
61
61
const goto_programt &old_goto_program,
62
62
const goto_programt &new_goto_program);
63
63
64
- static void lcss (
64
+ void lcss (
65
65
const irep_idt &identifier,
66
66
const goto_programt &old_goto_program,
67
67
const goto_programt &new_goto_program,
68
- differencest &differences);
68
+ differencest &differences) const ;
69
69
70
- static goto_program_difft get_diff (
70
+ goto_program_difft get_diff (
71
71
const goto_programt &old_goto_program,
72
72
const goto_programt &new_goto_program,
73
- const differencest &differences);
73
+ const differencest &differences) const ;
74
74
75
75
void output_diff (
76
76
const irep_idt &identifier,
You can’t perform that action at this time.
0 commit comments