Replies: 3 comments 3 replies
|
Surprisingly, https://en.cppreference.com/w/cpp/language/types#Integer_types |
3 replies
|
Thanks! This was just an oversight, adding it now... |
0 replies
|
Resolved with this commit: 7da4ff7 Thanks again. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi!
While browsing this part of the util header,
// Discouraged: Variable precision names
// short
using ushort = unsigned short;
// int
using ulong = unsigned long;
// long
using longlong = long long;
using ulonglong = unsigned long long;
using longdouble = long double;
I noticed there is no uint. Is this on purpose?
All reactions