* better implementation of TProcedureParam.GetFlags that correctly handles a TParamFlags with a size > 1 even on big endian

git-svn-id: trunk@35262 -
This commit is contained in:
svenbarth 2017-01-08 12:41:06 +00:00
parent ccf6504584
commit bd8a7be17e

View File

@ -2408,7 +2408,7 @@ end;
function TProcedureParam.GetFlags: Byte;
begin
Result := Byte(ParamFlags);
Result := PByte(@ParamFlags)^;
end;
{ TManagedField }