aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/ApiExtractor/include.h
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken2/ApiExtractor/include.h')
-rw-r--r--sources/shiboken2/ApiExtractor/include.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sources/shiboken2/ApiExtractor/include.h b/sources/shiboken2/ApiExtractor/include.h
index f7dfea5a7..2219fba55 100644
--- a/sources/shiboken2/ApiExtractor/include.h
+++ b/sources/shiboken2/ApiExtractor/include.h
@@ -29,6 +29,8 @@
#ifndef INCLUDE_H
#define INCLUDE_H
+#include <qtcompat.h>
+
#include <QString>
#include <QVector>
@@ -76,13 +78,13 @@ public:
return m_type == other.m_type && m_name == other.m_name;
}
- friend uint qHash(const Include&);
+ friend QtCompatHashFunctionType qHash(const Include&);
private:
IncludeType m_type = IncludePath;
QString m_name;
};
-uint qHash(const Include& inc);
+QtCompatHashFunctionType qHash(const Include& inc);
QTextStream& operator<<(QTextStream& out, const Include& include);
#ifndef QT_NO_DEBUG_STREAM
QDebug operator<<(QDebug d, const Include &i);