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

@ -50,13 +50,13 @@ namespace spot
for (steps::const_iterator i = run.prefix.begin();
i != run.prefix.end(); ++i)
{
step s = { s.s->clone(), i->label, i->acc };
step s = { i->s->clone(), i->label, i->acc };
prefix.push_back(s);
}
for (steps::const_iterator i = run.cycle.begin();
i != run.cycle.end(); ++i)
{
step s = { s.s->clone(), i->label, i->acc };
step s = { i->s->clone(), i->label, i->acc };
cycle.push_back(s);
}
}