-
Notifications
You must be signed in to change notification settings - Fork 273
Re-enable old function signatures for test-gen compat #1383
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,10 +19,18 @@ Author: Daniel Kroening, [email protected] | |
#include <util/symbol_table.h> | ||
|
||
class goto_modelt; | ||
class symbol_tablet; | ||
class goto_functionst; | ||
|
||
void remove_static_init_loops( | ||
const goto_modelt &, | ||
optionst &, | ||
message_handlert &); | ||
|
||
void remove_static_init_loops( | ||
const symbol_tablet &symbol_table, | ||
const goto_functionst &goto_functions, | ||
optionst &, | ||
message_handlert &); | ||
|
||
#endif // CPROVER_GOTO_PROGRAMS_REMOVE_STATIC_INIT_LOOPS_H |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,13 +16,19 @@ Author: Peter Schrammel | |
|
||
class namespacet; | ||
class goto_modelt; | ||
class goto_functionst; | ||
|
||
#define OPT_SHOW_GOTO_FUNCTIONS \ | ||
"(show-goto-functions)" | ||
|
||
#define HELP_SHOW_GOTO_FUNCTIONS \ | ||
" --show-goto-functions show goto program\n" | ||
|
||
void show_goto_functions( | ||
const namespacet &ns, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This appears to be missing an implementation? Perhaps it isn't needed? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nope never deleted |
||
ui_message_handlert::uit ui, | ||
const goto_functionst &goto_functions); | ||
|
||
void show_goto_functions( | ||
const goto_modelt &, | ||
ui_message_handlert::uit ui); | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,9 +16,16 @@ Author: Daniel Kroening, [email protected] | |
|
||
class namespacet; | ||
class goto_modelt; | ||
class symbol_tablet; | ||
class goto_functionst; | ||
|
||
void show_properties( | ||
const goto_modelt &, | ||
ui_message_handlert::uit ui); | ||
|
||
void show_properties( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This appears to be missing an implementation? Perhaps it isn't needed? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nope, never deleted. |
||
const namespacet &ns, | ||
ui_message_handlert::uit ui, | ||
const goto_functionst &goto_functions); | ||
|
||
#endif // CPROVER_GOTO_PROGRAMS_SHOW_PROPERTIES_H |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This appears to be missing an implementation? Perhaps it isn't needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nope never deleted.