From 8afbe0092a816bdfc303b6f392f50ad964c975cf Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 10 Jan 2025 18:18:12 +0800 Subject: [PATCH] fix issues/125 --- qt6/gen_qhashfunctions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt6/gen_qhashfunctions.cpp b/qt6/gen_qhashfunctions.cpp index 7b1be934..e58096e2 100644 --- a/qt6/gen_qhashfunctions.cpp +++ b/qt6/gen_qhashfunctions.cpp @@ -16,7 +16,7 @@ QHashSeed* QHashSeed_new2(size_t d) { } size_t QHashSeed_ToUnsignedLong(const QHashSeed* self) { - return self->operator unsigned long(); + return static_cast(*self); } QHashSeed* QHashSeed_GlobalSeed() {