forked from qt-creator/qt-creator
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:
committed by
Tobias Hunger
parent
5c0b21d78e
commit
49e0cef765
@@ -87,7 +87,7 @@ private:
|
|||||||
inline
|
inline
|
||||||
uint qHash(const Macro ¯o)
|
uint qHash(const Macro ¯o)
|
||||||
{
|
{
|
||||||
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));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user