Skip to content
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

Signed/unsigned integer mixing compiler warning inside "glm\detail\func_integer.inl" -> "uaddCarry()" #497

Closed
cofenberg opened this issue Mar 31, 2016 · 1 comment
Assignees
Labels
Milestone

Comments

@cofenberg
Copy link

Signed/unsigned integer mixing compiler warning inside "glm\detail\func_integer.inl" -> "uaddCarry()" using Visual Studio 2015 update 1, compiling with wall for x86 release.

Change line "Carry = Value64 > Max32 ? 1 : 0;" to "Carry = Value64 > Max32 ? 1u : 0u;".

Groovounet added a commit that referenced this issue Apr 24, 2016
@Groovounet Groovounet added the bug label Apr 24, 2016
@Groovounet Groovounet added this to the GLM 0.9.7 milestone Apr 24, 2016
@Groovounet Groovounet self-assigned this Apr 24, 2016
@Groovounet
Copy link
Member

This issue is fixed in 0.9.7 branch master branch.

Thanks for reporting,
Christophe

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants