mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-29 21:20:24 +02:00
* reverted n<>nil -> assigned(n) change from r15971 because of this is
no longer required after r15976 git-svn-id: trunk@16063 -
This commit is contained in:
parent
fa4b4906e6
commit
d5b556ba40
@ -48,7 +48,7 @@ begin
|
|||||||
B(@A);
|
B(@A);
|
||||||
n := nil;
|
n := nil;
|
||||||
n := A;
|
n := A;
|
||||||
if assigned(n) then
|
if nil <> n then
|
||||||
C(n);
|
C(n);
|
||||||
C(A);
|
C(A);
|
||||||
C(@A);
|
C(@A);
|
||||||
|
Loading…
Reference in New Issue
Block a user