mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-05 03:14:44 +00:00
Don't use deprecated QSet::iterator::operator+(int)
This commit is contained in:
parent
c239568658
commit
9c330812cc
@ -54,7 +54,7 @@ namespace Algorithm
|
|||||||
{
|
{
|
||||||
auto it = dict.begin();
|
auto it = dict.begin();
|
||||||
while (it != dict.end())
|
while (it != dict.end())
|
||||||
it = (p(it.key(), it.value()) ? dict.erase(it) : (it + 1));
|
it = (p(it.key(), it.value()) ? dict.erase(it) : ++it);
|
||||||
}
|
}
|
||||||
|
|
||||||
// To be used with set types, such as QSet, std::set
|
// To be used with set types, such as QSet, std::set
|
||||||
@ -64,6 +64,6 @@ namespace Algorithm
|
|||||||
{
|
{
|
||||||
auto it = set.begin();
|
auto it = set.begin();
|
||||||
while (it != set.end())
|
while (it != set.end())
|
||||||
it = (p(*it) ? set.erase(it) : (it + 1));
|
it = (p(*it) ? set.erase(it) : ++it);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user