Closed ryancdotorg closed 7 months ago
I tried compiling minisign with -DVERIFY_ONLY -Wall -Wextra -pedantic and some warnings were thrown about unused variables/code.
-DVERIFY_ONLY -Wall -Wextra -pedantic
This patch adds additional #ifndef VERIFY_ONLY/#endif blocks around the lines of code triggering the warnings.
#ifndef VERIFY_ONLY
#endif
In a few places the number of blocks could be reduced by re-ordering declarations, please let me know if you'd like me to do this.
I tried compiling minisign with
-DVERIFY_ONLY -Wall -Wextra -pedantic
and some warnings were thrown about unused variables/code.This patch adds additional
#ifndef VERIFY_ONLY
/#endif
blocks around the lines of code triggering the warnings.In a few places the number of blocks could be reduced by re-ordering declarations, please let me know if you'd like me to do this.