mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 19:25:58 +02:00
* GetDeclaration reflects bitpacked
git-svn-id: trunk@10026 -
This commit is contained in:
parent
4b72eae793
commit
2197401e66
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user