mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 15:49:26 +02:00
* minor reformatting, and removed superfluous assigned test (the value is
already used before that test) git-svn-id: trunk@21502 -
This commit is contained in:
parent
9412d4abd2
commit
3414f91590
@ -2964,7 +2964,7 @@ implementation
|
||||
end;
|
||||
|
||||
{ check for hints (deprecated etc) }
|
||||
if (procdefinition.typ = procdef) then
|
||||
if procdefinition.typ = procdef then
|
||||
check_hints(tprocdef(procdefinition).procsym,tprocdef(procdefinition).symoptions,tprocdef(procdefinition).deprecatedmsg);
|
||||
|
||||
{ add reference to corresponding procsym; may not be the one
|
||||
@ -2973,8 +2973,7 @@ implementation
|
||||
addsymref(tprocdef(procdefinition).procsym);
|
||||
|
||||
{ add needed default parameters }
|
||||
if assigned(procdefinition) and
|
||||
(paralength<procdefinition.maxparacount) then
|
||||
if (paralength<procdefinition.maxparacount) then
|
||||
begin
|
||||
paraidx:=0;
|
||||
i:=0;
|
||||
|
Loading…
Reference in New Issue
Block a user