* Patch from Henrique to improve stub generation for Delphi (bug ID 37568)

This commit is contained in:
michael 2020-08-14 10:26:02 +00:00
parent 2248f6abe2
commit 8e58dc66b3

View File

@ -1251,6 +1251,7 @@ begin
Raise EAbort.Create(SAbortError);
end;
{$IFNDEF MAKESTUB}
Type
TCharSet = Set of Char;
@ -1259,6 +1260,7 @@ Function CharInSet(Ch: Char;Const CSet : TCharSet) : Boolean; overload;
begin
Result:=Ch in CSet;
end;
{$ENDIF}
function CharInSet(Ch: Char; const CSet: array of char): Boolean; overload;