mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-02 15:15:50 +08:00
refs #937 Resolved clazy warnings: unnecessary memory allocation.
This commit is contained in:
@@ -53,7 +53,7 @@ namespace BlackMisc
|
||||
{
|
||||
if (this->isEmpty()) return QString("{wildcard: %1}").arg(this->m_wildcard ? "true" : "false");
|
||||
QString s;
|
||||
foreach (CPropertyIndex index, this->m_values.keys())
|
||||
for (const CPropertyIndex &index : makeKeysRange(this->m_values))
|
||||
{
|
||||
CVariant v = this->m_values.value(index);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user