mirror of
https://github.com/Z3Prover/z3
synced 2025-05-04 14:25:46 +00:00
patch for #5164
This commit is contained in:
parent
7aa4fc2d8f
commit
070eba0fe8
2 changed files with 20 additions and 8 deletions
|
@ -43,11 +43,12 @@ Notes:
|
|||
|
||||
|
||||
class func_decls {
|
||||
func_decl * m_decls;
|
||||
ast_manager* m { nullptr };
|
||||
func_decl * m_decls { nullptr };
|
||||
bool signatures_collide(func_decl* f, func_decl* g) const;
|
||||
bool signatures_collide(unsigned n, sort*const* domain, sort* range, func_decl* g) const;
|
||||
public:
|
||||
func_decls():m_decls(nullptr) {}
|
||||
func_decls() {}
|
||||
func_decls(ast_manager & m, func_decl * f);
|
||||
void finalize(ast_manager & m);
|
||||
bool contains(func_decl * f) const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue