File tree 1 file changed +3
-6
lines changed
1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -41,9 +41,7 @@ class concurrency_instrumentationt
41
41
42
42
void instrument (goto_functionst &goto_functions);
43
43
44
- void instrument (
45
- goto_programt &goto_program,
46
- const is_threadedt &is_threaded);
44
+ void instrument (goto_programt &goto_program);
47
45
48
46
void instrument (exprt &expr);
49
47
@@ -110,8 +108,7 @@ void concurrency_instrumentationt::instrument(exprt &expr)
110
108
}
111
109
112
110
void concurrency_instrumentationt::instrument (
113
- goto_programt &goto_program,
114
- const is_threadedt &is_threaded)
111
+ goto_programt &goto_program)
115
112
{
116
113
for (goto_programt::instructionst::iterator
117
114
it=goto_program.instructions .begin ();
@@ -217,7 +214,7 @@ void concurrency_instrumentationt::instrument(
217
214
218
215
// now instrument
219
216
Forall_goto_functions (f_it, goto_functions)
220
- instrument (f_it->second .body , is_threaded );
217
+ instrument (f_it->second .body );
221
218
}
222
219
223
220
void concurrency (
You can’t perform that action at this time.
0 commit comments