mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-05 00:05:32 -04:00
From the clazy docs: Finds cases where you're using QMap<K,T> and K is a pointer. QMap has the particularity of sorting it's keys, but sorting by memory address makes no sense. Use QHash instead, which provides faster lookups.