Explorar o código

* Add ptr types for fixed(u)int, fixes #40205

marcoonthegit %!s(int64=2) %!d(string=hai) anos
pai
achega
015f037997
Modificáronse 1 ficheiros con 4 adicións e 1 borrados
  1. 4 1
      rtl/objpas/objpas.pp

+ 4 - 1
rtl/objpas/objpas.pp

@@ -56,8 +56,11 @@ interface
        PPointerArray = ^PointerArray;
 
        // Delphi Berlin compatibility 
-       FixedInt = Int32;
+       FixedInt  = Int32;
        FixedUInt = UInt32;
+       PFixedInt = ^FixedInt;
+       PFixedUInt= ^FixedUInt;
+   
        
 {$if FPC_FULLVERSION >= 20701}