Update to compile with the Intel compiler.
This commit is contained in:
parent
7998fff056
commit
1d58493be3
13 changed files with 87 additions and 53 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue