Fix bug relying on undefined arg evaluation order.
This commit is contained in:
parent
4295736c97
commit
1b9f363225
|
@ -101,7 +101,8 @@ struct SelectionList
|
||||||
|
|
||||||
SelectionList& operator=(Vector<Selection> list)
|
SelectionList& operator=(Vector<Selection> list)
|
||||||
{
|
{
|
||||||
set(std::move(list), list.size()-1);
|
const size_t main_index = list.size()-1;
|
||||||
|
set(std::move(list), main_index);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user