Update to compile with the Intel compiler.

This commit is contained in:
Guillaume SADEGH 2008-12-07 02:31:15 +01:00 committed by Guillaume Sadegh
parent 7998fff056
commit 1d58493be3
13 changed files with 87 additions and 53 deletions

View file

@ -301,16 +301,6 @@ namespace spot
}
}
bool
recurse(const formula* f1, const formula* f2)
{
if (f1 == f2)
return true;
inf_right_recurse_visitor v(f2);
const_cast<formula*>(f1)->accept(v);
return v.result();
}
protected:
bool result_; /* true if f < f1, false otherwise. */
const formula* f;