mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 16:49:23 +02:00
fpdoc: fixed compile
git-svn-id: trunk@41084 -
This commit is contained in:
parent
fcb2145255
commit
c99972bc43
@ -3347,10 +3347,10 @@ var
|
|||||||
TDEl := CreateTD(TREl);
|
TDEl := CreateTD(TREl);
|
||||||
CodeEl := CreateCode(CreatePara(TDEl));
|
CodeEl := CreateCode(CreatePara(TDEl));
|
||||||
AppendKw(CodeEl, 'type');
|
AppendKw(CodeEl, 'type');
|
||||||
if AClass.ObjKind=okGeneric then
|
if AClass.GenericTemplateTypes.Count>0 then
|
||||||
AppendKw(CodeEl, ' generic ');
|
AppendKw(CodeEl, ' generic ');
|
||||||
AppendText(CodeEl, ' ' + UTF8Decode(AClass.Name) + ' ');
|
AppendText(CodeEl, ' ' + UTF8Decode(AClass.Name) + ' ');
|
||||||
if AClass.ObjKind=okGeneric then
|
if AClass.GenericTemplateTypes.Count>0 then
|
||||||
AppendGenericTypes(CodeEl,AClass.GenericTemplateTypes,false);
|
AppendGenericTypes(CodeEl,AClass.GenericTemplateTypes,false);
|
||||||
AppendSym(CodeEl, '=');
|
AppendSym(CodeEl, '=');
|
||||||
AppendText(CodeEl, ' ');
|
AppendText(CodeEl, ' ');
|
||||||
|
Loading…
Reference in New Issue
Block a user