mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 11:48:34 +02:00
* apply patch by Andrey Zubarev to avoid a hint regarding the position parameter not being initialized
git-svn-id: trunk@39785 -
This commit is contained in:
parent
25369b556d
commit
f0761d3995
@ -53,7 +53,7 @@ type
|
||||
function RotateLeft(nod:PNode):PNode;inline;
|
||||
procedure FlipColors(nod:PNode);inline;
|
||||
function IsRed(nod:PNode):boolean;inline;
|
||||
function Insert(value:T; nod:PNode; var position:PNode):PNode;
|
||||
function Insert(value:T; nod:PNode; out position:PNode):PNode;
|
||||
function FixUp(nod:PNode):PNode;inline;
|
||||
function MoveRedLeft(nod:PNode):PNode;inline;
|
||||
function MoveRedRight(nod:PNode):PNode;inline;
|
||||
@ -413,7 +413,7 @@ begin
|
||||
InsertAndGetIterator := ret;
|
||||
end;
|
||||
|
||||
function TSet.Insert(value:T; nod:PNode; var position:PNode):PNode;
|
||||
function TSet.Insert(value:T; nod:PNode; out position:PNode):PNode;
|
||||
begin
|
||||
if(nod=nil) then begin
|
||||
nod:=CreateNode(value);
|
||||
|
Loading…
Reference in New Issue
Block a user