mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 15:47:52 +02:00
fcl-passrc: fixed generic templates as string
This commit is contained in:
parent
3b5482b580
commit
83f9a94503
@ -1938,12 +1938,12 @@ begin
|
||||
Result:='';
|
||||
for i:=0 to List.Count-1 do
|
||||
begin
|
||||
T:=TPasGenericTemplateType(List[i]);
|
||||
if i>0 then
|
||||
if length(T.Constraints)>0 then
|
||||
Result:=Result+';'
|
||||
else
|
||||
Result:=Result+',';
|
||||
T:=TPasGenericTemplateType(List[i]);
|
||||
Result:=Result+T.Name;
|
||||
if length(T.Constraints)>0 then
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user