Skip to content

Commit 80ce7ec

Browse files
committed
fix get_module declaration
The declaration and the definition of get_module have diverged, making the function unusable.
1 parent f0fad5e commit 80ce7ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/util/get_module.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ Author: Daniel Kroening, [email protected]
1414

1515
#include <string>
1616

17-
class symbol_tablet;
17+
class symbol_table_baset;
1818
class message_handlert;
1919
class symbolt;
2020

2121
const symbolt &get_module(
22-
const symbol_tablet &symbol_table,
22+
const symbol_table_baset &,
2323
const std::string &module,
24-
message_handlert &message_handler);
24+
message_handlert &);
2525

2626
#endif // CPROVER_UTIL_GET_MODULE_H

0 commit comments

Comments
 (0)