ltsmin: do not take iterators by copy
* spot/ltsmin/spins_kripke.hxx: here.
This commit is contained in:
parent
df872ce6d9
commit
3c868c228b
1 changed files with 2 additions and 2 deletions
|
|
@ -251,9 +251,9 @@ namespace spot
|
|||
|
||||
kripkecube<cspins_state, cspins_iterator>::~kripkecube()
|
||||
{
|
||||
for (auto i: recycle_)
|
||||
for (auto& i: recycle_)
|
||||
{
|
||||
for (auto j: i)
|
||||
for (auto& j: i)
|
||||
{
|
||||
cubeset_.release(j->condition());
|
||||
delete j;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue