[Ohrrpgce] SVN: teeemcee/11262 As an alternative to marking functions PRIVATE you can mark them LOCAL,

subversion at HamsterRepublic.com subversion at HamsterRepublic.com
Sat Aug 17 16:22:01 PDT 2019


teeemcee
2019-08-17 16:22:01 -0700 (Sat, 17 Aug 2019)
515
As an alternative to marking functions PRIVATE you can mark them LOCAL, which does nothing

Marking a function PRIVATE indicates that the function is internal and
shouldn't/can't be called from outside the file. But it also tells the compiler
not to export that symbol and can result in .pdb debug symbols not being
produced when using cv2pdb.  It also encourages the compiler to inline the
function.  So use LOCAL instead of PRIVATE to indicate the same thing (as
documentation only) without debug symbol problems.
---
U   wip/config.bi
U   wip/reloadbasic/reloadbasic.py


More information about the Ohrrpgce mailing list