mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-02 06:35:52 +08:00
Use std::as_const (C++17 feature)
This commit is contained in:
@@ -116,7 +116,7 @@ namespace BlackSound
|
||||
Q_ASSERT(tonePairs.size() > 0);
|
||||
QByteArray finalBufferData;
|
||||
|
||||
for (const auto &tonePair : as_const(tonePairs))
|
||||
for (const auto &tonePair : std::as_const(tonePairs))
|
||||
{
|
||||
if (m_tonePairCache.contains(tonePair))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user