mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 13:29:27 +02:00
* Fixed description of array type without index (open array)
git-svn-id: trunk@7325 -
This commit is contained in:
parent
bb9de8f193
commit
2212c78609
@ -1115,7 +1115,10 @@ end;
|
||||
|
||||
function TPasArrayType.GetDeclaration (full : boolean) : string;
|
||||
begin
|
||||
Result:='Array['+IndexRange+'] of ';
|
||||
Result:='Array';
|
||||
If (IndexRange<>'') then
|
||||
Result:=Result+'['+IndexRange+']';
|
||||
Result:=Result+' of ';
|
||||
If IsPacked then
|
||||
Result := 'packed '+Result; // 12/04/04 Dave - Added
|
||||
If Assigned(Eltype) then
|
||||
|
Loading…
Reference in New Issue
Block a user