0: Cast to IPointer instead of Cardinal for 64bits Pascal SCript

This commit is contained in:
Carlo Kok 2013-12-03 12:42:38 +01:00
parent 4f0682d518
commit 94c5198fd1

View File

@ -14568,7 +14568,7 @@ begin
C := CurrClass.FClassItems[I];
if (c is TPSDelphiClassItemConstructor) and (C.NameHash = H) and (C.Name = Name) then
begin
Index := Cardinal(C);
Index := IPointer(C);
Result := True;
exit;
end;