mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 22:18:05 -06:00
Disable using Qt functions deprecated up to Qt 6.5
* Disable using Qt functions deprecated up to Qt 6.5 * Utilize QSet::removeIf() PR #19419.
This commit is contained in:
committed by
GitHub
parent
06581636a1
commit
33d767b765
@@ -148,7 +148,7 @@ void Server::removeConnection(Connection *connection)
|
||||
|
||||
void Server::dropTimedOutConnection()
|
||||
{
|
||||
erase_if(m_connections, [](Connection *connection)
|
||||
m_connections.removeIf([](Connection *connection)
|
||||
{
|
||||
if (!connection->hasExpired(KEEP_ALIVE_DURATION))
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user