crypt.c: remove pragmas #1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "gitlab-mr-iid-1"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
On some compilers, pragma messages are treated as a warning. If -Werror
is set, this would mean the compilation would erroneously fail.
Accepted but do note that mere
-Werrorshould generaly be avoided as it has a lot of broken behavior and compilers tend to happily add warnings, using it for a category or precise warning like-Werror=format-securityis fine though.Agreed, though it does seem Mix does this by default, at least with
MIX_ENVnot set: https://git.pleroma.social/pleroma/pleroma/-/issues/2710Not sure if that behaviour also occurs if
MIX_ENVis set toprodexplicitly but that can be discussed in that issue.Pull request closed