-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
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
VS2010 x86 doesn't accept LLU
suffix on numbers
#3647
Comments
Note: there are Visual Studio tests run in CI, and so far, none of them seems to suffer from |
LLU is a correct prefix according to C99 & C11 standards (but not C90). However, older versions of Visual Studio do not work with it. Replace by ULL, which doesn't have this issue. Fixes #3647
LLU is a correct prefix according to C99 & C11 standards (but not C90). However, older versions of Visual Studio do not work with it. Replace by ULL, which doesn't have this issue. Fixes facebook#3647
LLU is a correct prefix according to C99 & C11 standards (but not C90). However, older versions of Visual Studio do not work with it. Replace by ULL, which doesn't have this issue. Fixes facebook#3647
VS2010 x86 doesn't accept LLU suffix in numbers:
C2059: syntax error : 'bad suffix on number'.
zstd.h file:
ULL
suffix probably fixes such issues.The text was updated successfully, but these errors were encountered: