mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 00:02:06 +02:00
Avoid infinite recursion on generic classes for IDE browser
git-svn-id: trunk@26068 -
This commit is contained in:
parent
864a72ee69
commit
2370669f86
@ -1673,6 +1673,8 @@ end;
|
||||
Symbol^.Flags:=(Symbol^.Flags or sfObject);
|
||||
if tobjectdef(typedef).objecttype=odt_class then
|
||||
Symbol^.Flags:=(Symbol^.Flags or sfClass);
|
||||
if tobjectdef(typedef).objecttype=odt_class then
|
||||
if not(df_generic in typedef.defoptions) then
|
||||
ProcessSymTable(Symbol,Symbol^.Items,tobjectdef(typedef).symtable);
|
||||
end;
|
||||
recorddef :
|
||||
|
Loading…
Reference in New Issue
Block a user