restored dummy pointer in opaque types

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2006 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
drewski207 2011-09-24 21:26:57 +00:00
parent f19af38356
commit 4af2dd9b50

View File

@ -925,7 +925,7 @@ begin
TypeSect.Lines.Add(' { '+ AItem.CType+' }');
TypeSect.Lines.Add(IndentText(AItem.TranslatedName +' = record',2,0));
TypeSect.Lines.Add(IndentText('{ opaque type }',4,0));
//TypeSect.Lines.Add(IndentText('Unknown: Pointer;',4,0)); // to prevent crashes of the compiler
TypeSect.Lines.Add(IndentText('Unknown: Pointer;',4,0)); // to prevent crashes of the compiler
TypeSect.Lines.Add(IndentText('end;',2,1));
WriteLn('Wrote Opaque Type Name = ', AItem.Name,' CType = ', AItem.CType);