mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-21 23:03:36 +02:00
* don't export the symbols for "strict private" fields (it was only not
done for regular private fields) git-svn-id: branches/objc@13782 -
This commit is contained in:
parent
602d0ffa54
commit
97ba8de56c
@ -825,7 +825,7 @@ end;
|
||||
vf:=tfieldvarsym(objccls.symtable.SymList[i]);
|
||||
{ TODO: package visibility (private_extern) -- must not be exported
|
||||
either}
|
||||
if (vf.visibility<>vis_private) then
|
||||
if not(vf.visibility in [vis_private,vis_strictprivate]) then
|
||||
exportname(prefix+vf.RealName,0);
|
||||
end;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user