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
retdec produces code like
int16_t* some_int = NULL; (int32_t) some_int;
which fails to compile
main.cpp: error: cast from ‘int16_t*’ {aka ‘short int*’} to ‘int32_t’ {aka ‘int’} loses precision [-fpermissive]
related:
CFLAGS="-fpermissive"
static_cast<int>(reinterpret_cast<long>(void * your_variable));
CFLAGS="-m32"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
retdec produces code like
which fails to compile
related:
CFLAGS="-fpermissive"
to turn errors to warningsstatic_cast<int>(reinterpret_cast<long>(void * your_variable));
CFLAGS="-m32"
to force 32bit targetThe text was updated successfully, but these errors were encountered: