Browse Source

* use SizeInt instead of LongInt for the size fields of the VMT to match what the compiler generates for non-32-bit targets

git-svn-id: trunk@39727 -
svenbarth 7 years ago
parent
commit
5d9ddf99d4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/rtl-extra/src/inc/objects.pp

+ 1 - 1
packages/rtl-extra/src/inc/objects.pp

@@ -1013,7 +1013,7 @@ TYPE
    PVMT=^VMT;
    PPVMT=^PVMT;
    VMT=RECORD
-     Size,NegSize:Longint;
+     Size,NegSize:SizeInt;
      ParentLink:PPVMT;
    END;
 VAR SP:PPVMT; Q:PVMT;