mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-19 21:03:30 -07:00
Fix MSVC warning C4804
Full message of the warning: webui\api\searchcontroller.cpp(54): warning C4804: '>': unsafe use of type 'bool' in operation
This commit is contained in:
parent
1f2c7a6671
commit
d4a4b02cf6
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ namespace
|
||||||
void removeActiveSearch(ISession *session, const int id)
|
void removeActiveSearch(ISession *session, const int id)
|
||||||
{
|
{
|
||||||
auto activeSearches = session->getData<QSet<int>>(ACTIVE_SEARCHES);
|
auto activeSearches = session->getData<QSet<int>>(ACTIVE_SEARCHES);
|
||||||
if (activeSearches.remove(id) > 0)
|
if (activeSearches.remove(id))
|
||||||
session->setData(ACTIVE_SEARCHES, QVariant::fromValue(activeSearches));
|
session->setData(ACTIVE_SEARCHES, QVariant::fromValue(activeSearches));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue