marty-public
marty-public copied to clipboard
Improved safety for param_t structures
Hi, while I am finishing to improve the compare branch (to avoid the warnings), I noticed two important improvements that can be done for the param_t
type and its use. In particular
- calling
par->getName()
instead ofpar->name
in theprint
function. This allows to setname
as private inInintSanitizer
- making
print
aconst
method, to allow for calling it in scopes where theparam_t
variable is qualified asconst
I can do them myself in the compare
branch, however I could not find the correct source files to modify them.