mirror of
https://github.com/Z3Prover/z3
synced 2026-01-19 00:38:57 +00:00
Fix unused parameter warnings in empty override functions by omitting parameter names (#8174)
* Initial plan * Fix unused parameter warnings in empty override functions Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> * Omit parameter names in empty override functions instead of casting to void Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
parent
bb6cd7cd0e
commit
daefb4ddfd
15 changed files with 19 additions and 19 deletions
|
|
@ -122,7 +122,7 @@ namespace sls {
|
|||
void propagate_literal(sat::literal lit) override { m_g = nullptr; }
|
||||
bool propagate() override { return false; }
|
||||
bool repair_down(app* e) override { return true; }
|
||||
void repair_up(app* e) override {}
|
||||
void repair_up(app*) override { }
|
||||
void repair_literal(sat::literal lit) override { m_g = nullptr; }
|
||||
bool is_sat() override;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue