-
Notifications
You must be signed in to change notification settings - Fork 620
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
Use LL for 64-bit literals #126
Use LL for 64-bit literals #126
Conversation
On a 32-bit architecture, these literals are too big for just a long, they need to be long long, otherwise I get an error in GCC.
Shouldn't these actually be 0x...ULL since Int64 is unsigned? |
Ah, good point. I think the way it'll underflow, you'll get to the same place, but may as well do it right. I can update the pull request if you like. |
Please do. |
As discusses in pull request AcademySoftwareFoundation#126
Done. |
Use LL for 64-bit literals
Please pull this to the develop branch as well. BTW, which policy for the branches to you have? It's a bit strange to see a commit pulled into master, but not into dev. |
The merge into master was an error. It should have gone into develop first. |
…re/LL_literal Use LL for 64-bit literals
As discusses in pull request AcademySoftwareFoundation#126
As discusses in pull request AcademySoftwareFoundation#126
On a 32-bit architecture, these literals are too big for just a long,
they need to be long long, otherwise I get an error in GCC.