* Fix compilation in unicode RTL

This commit is contained in:
Michaël Van Canneyt 2023-11-27 09:50:33 +01:00
parent 1ec0326995
commit 1f4b8a774f

View File

@ -631,7 +631,7 @@ end;
function TJSONScanner.GetAbsolutePos: Integer;
begin
Result:=FCurPos-PChar(FSource);
Result:=FCurPos-PAnsiChar(FSource);
end;
procedure TJSONScanner.SetO(AIndex: TJSONOption; AValue: Boolean);