summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qmessageauthenticationcode.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-29 13:26:04 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-29 21:59:31 +0100
commit5b76be7e2bbd6f6d1eccc3a52a4595223c0620a1 (patch)
tree6e209f292838c8220c08cb7f85bfacf9f2954bed /src/corelib/tools/qmessageauthenticationcode.h
parent133067085a5f662865d0d7aaebcce7d82569b076 (diff)
Fix two missing conversions from in to qsizetype
Change-Id: I08ac9a0eb5dfb17f2b6cfaca9e3f3d7375c02bd4 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/corelib/tools/qmessageauthenticationcode.h')
-rw-r--r--src/corelib/tools/qmessageauthenticationcode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/tools/qmessageauthenticationcode.h b/src/corelib/tools/qmessageauthenticationcode.h
index a13a3d2acf..343bf9d617 100644
--- a/src/corelib/tools/qmessageauthenticationcode.h
+++ b/src/corelib/tools/qmessageauthenticationcode.h
@@ -59,7 +59,7 @@ public:
void setKey(const QByteArray &key);
- void addData(const char *data, int length);
+ void addData(const char *data, qsizetype length);
void addData(const QByteArray &data);
bool addData(QIODevice *device);