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
the bug will appear if you choose to compile with x64 instead x86 because 1 pointer take 4 bytes in x86, take 8 bytes in x64
So if I want to compile with x64, I have to do like this way "unsigned long long" take 8 bytes,same as the pointer
The text was updated successfully, but these errors were encountered:
Thank you for pointing this out. I will fix this soon. I will also consider moving to shared pointer instead of the reference-counting we implemented.
Feel free to report more issues if there are (mainly in x64) or pull requests.
Sorry, something went wrong.
No branches or pull requests
the bug will appear if you choose to compile with x64 instead x86
because 1 pointer take 4 bytes in x86, take 8 bytes in x64
So if I want to compile with x64, I have to do like this way
"unsigned long long" take 8 bytes,same as the pointer
The text was updated successfully, but these errors were encountered: