1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
# temporary-iterator
Detects when you're using functions returning iterators (eg. `begin()` or `end()`) on a temporary container.
#### Example
// temporary list returned by function
QList<type> getList()
{
QList<type> list;
... add some items to list ...
return list;
}
// Will cause a crash if iterated using:
for (QList<type>::iterator it = getList().begin(); it != getList().end(); ++it)
{
...
}
because the end iterator was returned from a different container object than the begin iterator.
|