mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 18:07:56 +02:00
Avoid invalid typecast error when using -CR option
git-svn-id: trunk@48978 -
This commit is contained in:
parent
85fa313e59
commit
a7de0b365b
@ -625,7 +625,8 @@ implementation
|
||||
pd : tprocdef;
|
||||
oldcount,
|
||||
count: longint;
|
||||
parasym : tparavarsym;
|
||||
sym : tsym;
|
||||
parasym : tparavarsym absolute sym;
|
||||
begin
|
||||
result:=false;
|
||||
count := pf.parast.SymList.count;
|
||||
@ -633,8 +634,8 @@ implementation
|
||||
oldcount:=count;
|
||||
while count > 0 do
|
||||
begin
|
||||
parasym:=tparavarsym(pf.parast.SymList[count-1]);
|
||||
if parasym.typ<>paravarsym then
|
||||
sym:=tsym(pf.parast.SymList[count-1]);
|
||||
if sym.typ<>paravarsym then
|
||||
begin
|
||||
dec(count);
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user