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

@ -117,21 +117,6 @@ namespace spot
return num;
}
std::ostream&
dump(std::ostream& os) const
{
fv_map::const_iterator fi;
os << "Next Variables:" << std::endl;
for (fi = next_map.begin(); fi != next_map.end(); ++fi)
{
os << " " << fi->second << ": Next[";
fi->first->to_string(os) << "]" << std::endl;
}
os << "Shared Dict:" << std::endl;
dict->dump(os);
return os;
}
formula*
var_to_formula(int var) const
{