-
Notifications
You must be signed in to change notification settings - Fork 426
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
Request: Fixing compiler warnings #67
Comments
Adding to this request. When compiling with C++11 I get a bunch of warnings of zero as null pointer. #if !defined(__cplusplus) || __cplusplus < 201100L
#define nullptr NULL
#endif And replace |
Chiming in here, because I get lots of errors with x86_64 builds on current MSVC with default options (including
(the line numbers are for the Oct 17 2020 release, |
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Creating a x64 target with MS compilers report several warnings. On a x64 target variable type "unsigned" is 32bit whereas "size_t" is 64bit wide causing most of the warnings.
The text was updated successfully, but these errors were encountered: