mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-25 03:29:14 +02:00
* Fix bug id #37513 : type helper declaration incomplete
git-svn-id: trunk@46320 -
This commit is contained in:
parent
a78d5ba112
commit
b68c68b48b
@ -633,6 +633,14 @@ begin
|
||||
okRecordHelper: Add('record helper');
|
||||
okClassHelper: Add('class helper');
|
||||
end;
|
||||
if (AClass.ObjKind in [okTypeHelper,okRecordHelper,okClassHelper]) then
|
||||
begin
|
||||
if not Assigned(AClass.HelperForType) then
|
||||
Add(' for unknowntype')
|
||||
else
|
||||
Add(' for '+AClass.HelperForType.SafeName)
|
||||
end;
|
||||
|
||||
if AClass.IsForward then
|
||||
exit;
|
||||
if (AClass.ObjKind=okClass) and (ACLass.ExternalName<>'') and NotOption(woNoExternalClass) then
|
||||
|
Loading…
Reference in New Issue
Block a user