diff options
Diffstat (limited to 'src/plugins/classview/classviewsymbolinformation.h')
-rw-r--r-- | src/plugins/classview/classviewsymbolinformation.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/plugins/classview/classviewsymbolinformation.h b/src/plugins/classview/classviewsymbolinformation.h index c6189c0b39..3e719bf89b 100644 --- a/src/plugins/classview/classviewsymbolinformation.h +++ b/src/plugins/classview/classviewsymbolinformation.h @@ -55,21 +55,15 @@ public: int iconTypeSortOrder() const; + friend auto qHash(const SymbolInformation &information) { return information.hash(); } + private: const int m_iconType; const Utils::QHashValueType m_hash; // precalculated hash value - to speed up qHash const QString m_name; // symbol name (e.g. SymbolInformation) const QString m_type; // symbol type (e.g. (int char)) - }; -//! qHash overload for QHash/QSet -inline auto qHash(const SymbolInformation &information) -{ - return information.hash(); -} - - } // namespace Internal } // namespace ClassView |