summaryrefslogtreecommitdiffstats
path: root/src/knx/netip/qknxnetipstruct.h
diff options
context:
space:
mode:
authorKarsten Heimrich <karsten.heimrich@qt.io>2020-06-26 10:25:35 +0200
committerKarsten Heimrich <karsten.heimrich@qt.io>2020-06-26 12:51:26 +0200
commit6ae295c3bc4f0c16c4f0ffad995e416117abf377 (patch)
tree1ee934d1007d097d064dfe2bc58a82844876aaf3 /src/knx/netip/qknxnetipstruct.h
parent1e5c0eaa088fd78cb482070b379230c31efcd5df (diff)
Fix size_t warnings
Change-Id: I84e154fe62f14a7df98c550a0a86ff69d3ba2034 Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
Diffstat (limited to 'src/knx/netip/qknxnetipstruct.h')
-rw-r--r--src/knx/netip/qknxnetipstruct.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/knx/netip/qknxnetipstruct.h b/src/knx/netip/qknxnetipstruct.h
index 0e2d196..1f5ff42 100644
--- a/src/knx/netip/qknxnetipstruct.h
+++ b/src/knx/netip/qknxnetipstruct.h
@@ -157,7 +157,7 @@ Q_KNX_EXPORT QDebug operator<<(QDebug debug, const QKnxNetIpStruct<QKnxNetIp::De
Q_KNX_EXPORT QDebug operator<<(QDebug debug, const QKnxNetIpStruct<QKnxNetIp::SearchParameterType> &srp);
template <typename CodeType>
-Q_DECL_PURE_FUNCTION uint qHash(const QKnxNetIpStruct<CodeType> &key, uint seed = 0) Q_DECL_NOTHROW
+Q_DECL_PURE_FUNCTION size_t qHash(const QKnxNetIpStruct<CodeType> &key, uint seed = 0) Q_DECL_NOTHROW
{
return qHash(key.bytes(), seed);
}