Skip to content

Commit

Permalink
Remove unused private member from smaller_pattern.
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored and NikolajBjorner committed Aug 3, 2022
1 parent 3ab9628 commit 112dba5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/ast/pattern/pattern_inference.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ pattern_inference_cfg::pattern_inference_cfg(ast_manager & m, pattern_inference_
m_params(params),
m_bfid(m.get_basic_family_id()),
m_afid(m.mk_family_id("arith")),
m_le(m),
m_le(),
m_nested_arith_only(true),
m_block_loop_patterns(params.m_pi_block_loop_patterns),
m_candidates(m),
Expand Down
5 changes: 1 addition & 4 deletions src/ast/pattern/pattern_inference.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;

Expand Down

0 comments on commit 112dba5

Please sign in to comment.