* GetDeclaration reflects bitpacked

git-svn-id: trunk@10026 -
This commit is contained in:
michael 2008-01-27 10:40:41 +00:00
parent 4b72eae793
commit 2197401e66

View File

@ -1267,7 +1267,10 @@ begin
Try Try
Temp:='record'; Temp:='record';
If IsPacked then If IsPacked then
Temp:='packed '+Temp; if IsBitPacked then
Temp:='bitpacked '+Temp
else
Temp:='packed '+Temp;
If Full then If Full then
Temp:=Name+' = '+Temp; Temp:=Name+' = '+Temp;
S.Add(Temp); S.Add(Temp);