Skip to content

Commit

Permalink
remove cast expression
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Mar 31, 2023
1 parent a62e4b2 commit 7664429
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ast/pattern/pattern_inference.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ app* pattern_inference_cfg::mk_pattern(app* candidate) {
m_args.push_back(to_app(e));
}
}
return m.mk_pattern(m_args.size(), (app* const*)m_args.data());
return m.mk_pattern(m_args.size(), m_args.data());
}

/**
Expand Down

0 comments on commit 7664429

Please sign in to comment.