We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93fcb68 commit a55d239Copy full SHA for a55d239
src/goto-programs/goto_program.h
@@ -376,19 +376,19 @@ class goto_programt
376
type = GOTO;
377
}
378
379
- void make_assignment(const codet &_code)
+ void make_assignment(const code_assignt &_code)
380
{
381
clear(ASSIGN);
382
code=_code;
383
384
385
- void make_decl(const codet &_code)
+ void make_decl(const code_declt &_code)
386
387
clear(DECL);
388
389
390
391
- void make_function_call(const codet &_code)
+ void make_function_call(const code_function_callt &_code)
392
393
clear(FUNCTION_CALL);
394
0 commit comments