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
#ifdef _MSC_VER typedef __int32 int32_t; typedef unsigned __int32 uint32_t; typedef __int64 int64_t; typedef unsigned __int32 uint64_t; #else
the __int32 in the last line should be a 64 I guess.
Don't know why these lines are there in the first place. Compiles fine in VS2017 with all 4 typedef commented out.
Thanks for this application.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
#ifdef _MSC_VER
typedef __int32 int32_t;
typedef unsigned __int32 uint32_t;
typedef __int64 int64_t;
typedef unsigned __int32 uint64_t;
#else
the __int32 in the last line should be a 64 I guess.
Don't know why these lines are there in the first place. Compiles fine in VS2017 with all 4 typedef commented out.
Thanks for this application.
The text was updated successfully, but these errors were encountered: