mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-19 16:19:38 +01:00
+ try to fix the warnings introduced in r27947, so the compiler builds with -Sew
git-svn-id: trunk@28014 -
This commit is contained in:
parent
f71480b281
commit
00b55e100c
@ -2440,6 +2440,9 @@ implementation
|
||||
{ allow post fix operators }
|
||||
again:=true;
|
||||
|
||||
{ preinitalize tokenpos }
|
||||
tokenpos:=current_filepos;
|
||||
|
||||
{ first check for identifier }
|
||||
if token<>_ID then
|
||||
begin
|
||||
@ -2774,7 +2777,7 @@ implementation
|
||||
end;
|
||||
end; { end case }
|
||||
|
||||
if p1.nodetype<>errorn then
|
||||
if assigned(p1) and (p1.nodetype<>errorn) then
|
||||
p1.fileinfo:=tokenpos;
|
||||
end;
|
||||
end;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user