mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
* Replace object with record where possible
This commit is contained in:
parent
a478a33c32
commit
1e9e533e6c
@ -1,5 +1,6 @@
|
||||
{$mode objfpc}
|
||||
{$asmmode default}
|
||||
{$modeswitch advancedrecords}
|
||||
{$H-}
|
||||
{$goto on}
|
||||
{$ifndef DISABLE_INLINE}
|
||||
|
@ -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
|
||||
|
@ -42,7 +42,7 @@ interface
|
||||
|
||||
{ THashedIDString }
|
||||
|
||||
THashedIDString=object
|
||||
THashedIDString = record
|
||||
private
|
||||
FId : TIDString;
|
||||
FHash : Longword;
|
||||
|
@ -161,7 +161,7 @@ interface
|
||||
TDeref
|
||||
************************************************}
|
||||
|
||||
tderef = object
|
||||
tderef = record
|
||||
dataidx : longint;
|
||||
procedure reset;
|
||||
procedure build(s:TObject);
|
||||
|
Loading…
Reference in New Issue
Block a user