Qt6: Proper cast of result for -Sy.

This commit is contained in:
Željan Rikalo 2024-02-05 17:07:09 +01:00
parent d0b70cc7d4
commit 67868afe81

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;