mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 23:45:35 +08:00
refactor: Fix clang-tidy modernize-return-braced-init-list
This commit is contained in:
@@ -119,7 +119,7 @@ namespace swift::core
|
||||
|
||||
QPair<qint64, qint64> CThreadedReader::getNetworkReplyBytes() const
|
||||
{
|
||||
return QPair<qint64, qint64>(m_networkReplyCurrent, m_networkReplyMax);
|
||||
return { m_networkReplyCurrent, m_networkReplyMax };
|
||||
}
|
||||
|
||||
void CThreadedReader::networkReplyProgress(int logId, qint64 current, qint64 max, const QUrl &url)
|
||||
|
||||
Reference in New Issue
Block a user