NativeInt ist unter 32 Bit 32 Bit groß und unter 64 Bit natürlich 64 Bit.
im Grunde genommen sieht es quasi so aus
Delphi-Quellcode:
type
{$IFDEF WIN32}
NativeInt = Integer;
// aka Int32
{$ELSE}
NativeInt = Int64;
{$ENDIF}
https://quality.embarcadero.com/browse/RSP-20886
https://quality.embarcadero.com/browse/RSP-42722
https://www.facebook.com/embarcadero...h7JYZD1KTBhKKl
Es gab aber im QP auch einen eigenen BugReport bezüglich dieses Problems (fand ihn nicht, aber siehe Facebook),
also dass der Typ "NativeInt" nun strenger geprüft wird
und unter Win64 dann plötzlich Int64 und NativeInt nicht "identisch" sind, obwohl sie eigentlich gleich sind.