@@ -73,25 +73,25 @@ unified_difft::goto_program_difft unified_difft::get_diff(
73
73
dest.push_back (std::make_pair (new_it, differencet::SAME));
74
74
INVARIANT (
75
75
old_it != old_goto_program.instructions .end (),
76
- " Old iterator reached the final goto instruction" );
76
+ " old iterator reached the final goto instruction" );
77
77
++old_it;
78
78
INVARIANT (
79
79
new_it != new_goto_program.instructions .end (),
80
- " New iterator reached the final goto instruction" );
80
+ " new iterator reached the final goto instruction" );
81
81
++new_it;
82
82
break ;
83
83
case differencet::DELETED:
84
84
dest.push_back (std::make_pair (old_it, differencet::DELETED));
85
85
INVARIANT (
86
86
old_it != old_goto_program.instructions .end (),
87
- " Old iterator reached the final goto instruction" );
87
+ " old iterator reached the final goto instruction" );
88
88
++old_it;
89
89
break ;
90
90
case differencet::NEW:
91
91
dest.push_back (std::make_pair (new_it, differencet::NEW));
92
92
INVARIANT (
93
93
new_it != new_goto_program.instructions .end (),
94
- " New iterator reached the final goto instruction" );
94
+ " new iterator reached the final goto instruction" );
95
95
++new_it;
96
96
break ;
97
97
}
@@ -345,7 +345,7 @@ bool unified_difft::operator()()
345
345
else
346
346
{
347
347
INVARIANT (
348
- ito->first == itn->first , " Old and new function names do not match" );
348
+ ito->first == itn->first , " old and new function names do not match" );
349
349
unified_diff (
350
350
itn->first , ito->second ->second .body , itn->second ->second .body );
351
351
++ito;
0 commit comments