-
-
Notifications
You must be signed in to change notification settings - Fork 116
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
NumberTraits doesn't work with (unsigned) long long int
types
#1396
Labels
Comments
Moreover, shouldn't |
|
Thanks to the "Related issues" beta feature of GitHub 😅 |
We should close this one, shouldn't we ? |
Yep, fixed in #1397 ! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For example,
SignedVersion
andUnsignedVersion
return wrong types with, respectively,unsigned long long
andsigned long long
types.CInteger
also fails with those types.Related to #146 but those types are now in the standard (C++11).
Additionally, the
digits
values for floating-point types are wrong : it returns the number of decimal digits (e.g.FLT_DG
) instead of the binary digits (e.g.FLT_MANT_DIG
).The text was updated successfully, but these errors were encountered: