We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PAD_STACK
In placeholder.h:
placeholder.h
#ifndef UNUSED #if defined(__clang__) || defined(__GNUC__) #define UNUSED __attribute__((unused)) #else #define UNUSED #endif #endif #define PAD_STACK(bytes) \ do { \ UNUSED unsigned char _[(bytes)] = { 0 }; \ } while (0);
In compile_flags.txt:
compile_flags.txt
--Wno-unused-but-set-variable -Wno-unused-function -Wno-unused-parameter -Wno-unused-value --Wno-unused-variable
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In
placeholder.h
:In
compile_flags.txt
:The text was updated successfully, but these errors were encountered: