mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
fix build on C++98 compilers
This commit is contained in:
parent
fe6799699c
commit
b9c0578eea
2 changed files with 2 additions and 2 deletions
|
@ -69,7 +69,7 @@ bool theory_seq::solution_map::is_root(expr* e) const {
|
|||
// e1 -> .... -> e3
|
||||
|
||||
// e1 -> ... x, e2 -> ... x
|
||||
void theory_seq::solution_map::find_rec(expr* e, svector<std::pair<expr*, dependency*>>& finds) {
|
||||
void theory_seq::solution_map::find_rec(expr* e, svector<std::pair<expr*, dependency*> >& finds) {
|
||||
dependency* d = 0;
|
||||
std::pair<expr*, dependency*> value(e, d);
|
||||
do {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue