Qt6: Proper cast of result for -Sy.

(cherry picked from commit 67868afe81)
This commit is contained in:
Željan Rikalo 2024-02-05 17:07:09 +01:00
parent 32f41648f4
commit b0867a7674

View File

@ -15716,7 +15716,7 @@ end;
// QReal Array Access from c-code
function GetQRealArrayAddr(var PArr : TQRealArray): PPtrInt; cdecl; export;
begin
Result := @PArr[0];
Result := PPtrInt(@PArr[0]);
end;
function GetQRealArrayLength(var PArr: TQRealArray): Integer; cdecl; export;