mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 11:48:04 +02:00
* copy and compare the typesym inside type nodes as well
git-svn-id: trunk@49062 -
This commit is contained in:
parent
2d255cec91
commit
067b9b2922
@ -1372,6 +1372,7 @@ implementation
|
||||
n:=ttypenode(inherited dogetcopy);
|
||||
n.allowed:=allowed;
|
||||
n.typedef:=typedef;
|
||||
n.typesym:=typesym;
|
||||
n.helperallowed:=helperallowed;
|
||||
result:=n;
|
||||
end;
|
||||
@ -1382,6 +1383,7 @@ implementation
|
||||
docompare :=
|
||||
inherited docompare(p) and
|
||||
(typedef=ttypenode(p).typedef) and
|
||||
(typesym=ttypenode(p).typesym) and
|
||||
(allowed=ttypenode(p).allowed) and
|
||||
(helperallowed=ttypenode(p).helperallowed);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user