mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
remove template Context dependency in every trail object
This commit is contained in:
parent
df0a449f70
commit
a152bb1e80
65 changed files with 413 additions and 413 deletions
|
@ -30,7 +30,7 @@ namespace smt {
|
|||
m_bits2char = symbol("bits2char");
|
||||
}
|
||||
|
||||
struct theory_char::reset_bits : public trail<context> {
|
||||
struct theory_char::reset_bits : public trail {
|
||||
theory_char& s;
|
||||
unsigned idx;
|
||||
|
||||
|
@ -39,7 +39,7 @@ namespace smt {
|
|||
idx(idx)
|
||||
{}
|
||||
|
||||
void undo(context& ctx) override {
|
||||
void undo() override {
|
||||
s.m_bits[idx].reset();
|
||||
s.m_ebits[idx].reset();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue