+ placeholder function to check whether two tdynamicarray instances have the same contents (needs to be implemented for COMDAT selection with same content to work)

git-svn-id: trunk@36196 -
This commit is contained in:
svenbarth 2017-05-12 15:52:07 +00:00
parent a7ca75a4b6
commit b74b3b0047

View File

@ -470,6 +470,7 @@ type
procedure writestr(const s:string); {$ifdef CCLASSESINLINE}inline;{$endif}
procedure readstream(f:TCStream;maxlen:longword);
procedure writestream(f:TCStream);
function equal(other:tdynamicarray):boolean;
property CurrBlockSize : longword read FCurrBlocksize;
property FirstBlock : PDynamicBlock read FFirstBlock;
property Pos : longword read FPosn;
@ -2791,6 +2792,14 @@ end;
end;
end;
function tdynamicarray.equal(other:tdynamicarray):boolean;
begin
result:=false;
{ TODO }
end;
{****************************************************************************
thashset
****************************************************************************}