3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-08 16:25:48 +00:00

Remove unused private member from smaller_pattern.

This commit is contained in:
Bruce Mitchener 2022-08-02 23:34:48 +07:00 committed by Nikolaj Bjorner
parent 3ab96281eb
commit 112dba559f
2 changed files with 2 additions and 5 deletions

View file

@ -37,7 +37,6 @@ Revision History:
every instance of f(g(X)) is also an instance of f(X).
*/
class smaller_pattern {
ast_manager & m;
ptr_vector<expr> m_bindings;
typedef std::pair<expr *, expr *> expr_pair;
@ -50,9 +49,7 @@ class smaller_pattern {
public:
smaller_pattern(ast_manager & m):
m(m) {
}
smaller_pattern() = default;
smaller_pattern & operator=(smaller_pattern const &) = delete;