i get an "allocating unneeded temporary container" warning when i try to iterate over the values of a specific key in a QMultiMap:
QMultiHash<QString,QString> testMap;
for (auto &&value : testMap.values("Specific Key"))
{
}
Is there a better way of doin this?