* Replace object with record where possible

This commit is contained in:
Michaël Van Canneyt 2024-05-04 15:15:41 +02:00
parent a478a33c32
commit 1e9e533e6c
4 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,6 @@
{$mode objfpc}
{$asmmode default}
{$modeswitch advancedrecords}
{$H-}
{$goto on}
{$ifndef DISABLE_INLINE}

View File

@ -219,7 +219,7 @@ interface
{ already been disposed and to make sure the coherency between temps and }
{ temp references is kept after a getcopy }
ptempinfo = ^ttempinfo;
ttempinfo = object
ttempinfo = record
private
flags : ttempinfoflags;
public

View File

@ -42,7 +42,7 @@ interface
{ THashedIDString }
THashedIDString=object
THashedIDString = record
private
FId : TIDString;
FHash : Longword;

View File

@ -161,7 +161,7 @@ interface
TDeref
************************************************}
tderef = object
tderef = record
dataidx : longint;
procedure reset;
procedure build(s:TObject);