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
When I compile my app with Win64, I receive the following compiler warning
1>/y.tab.c(1366,41): warning C4244: "Initialisierung": Converting from "__int64" to "long", possible data loss
The line:
/* Get the current used size of the three stacks, in elements. */ YYPTRDIFF_T yysize = yyssp - yyss + 1;
The definition:
# define YYPTRDIFF_T long # define YYPTRDIFF_MAXIMUM LONG_MAX
I wonder, shouldn't the definition be changed to this?
#ifdef _WIN64 # define YYPTRDIFF_T long long # define YYPTRDIFF_MAXIMUM LLONG_MAX #else # define YYPTRDIFF_T long # define YYPTRDIFF_MAXIMUM LONG_MAX #endif
The text was updated successfully, but these errors were encountered:
Fixes lexxmark#95
ba3893a
Fix of lexxmark#95
9376974
No branches or pull requests
When I compile my app with Win64, I receive the following compiler warning
1>/y.tab.c(1366,41): warning C4244: "Initialisierung": Converting from "__int64" to "long", possible data loss
The line:
The definition:
I wonder, shouldn't the definition be changed to this?
The text was updated successfully, but these errors were encountered: