ProjectExplorer: Fix build with namespaced Qt

Broke with b6e12f4a.

Change-Id: I81af93bfe19801805fd558e3445cd9788f2574b3
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Christian Stenger
2017-09-20 07:18:59 +02:00
committed by Tobias Hunger
parent 5c0b21d78e
commit 49e0cef765

View File

@@ -87,7 +87,7 @@ private:
inline inline
uint qHash(const Macro &macro) uint qHash(const Macro &macro)
{ {
using ::qHash; using QT_PREPEND_NAMESPACE(qHash);
return qHash(macro.key) ^ qHash(macro.value) ^ qHash(int(macro.type)); return qHash(macro.key) ^ qHash(macro.value) ^ qHash(int(macro.type));
} }