Rob Lauer
Rob Lauer
Yes, as noted `-Wall` was not the issue and only printed all of the errors, the offending flag was `-Wformat=security'. Diving into that module's code a bit I found that...
> No, the offending flag is `-Werror=format-security`, which actually does make sense. The whole point of `-Werror` is to make warnings fatal. It's explicitly asking for this. Yeah `-Werror=format-security` forces...
Here's what seems to work...but apparently there are differences between `ReadonlyX` and `Readonly` that might trip you up if you rely on the nuances/bugs of `Readonly`. ``` BEGIN { use...