* 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:
Jonas Maebe 2010-09-29 21:39:07 +00:00
parent fa4b4906e6
commit d5b556ba40

View File

@ -48,7 +48,7 @@ begin
B(@A);
n := nil;
n := A;
if assigned(n) then
if nil <> n then
C(n);
C(A);
C(@A);