Replies: 3 comments 3 replies
-
Surprisingly, https://en.cppreference.com/w/cpp/language/types#Integer_types |
Beta Was this translation helpful? Give feedback.
3 replies
-
Thanks! This was just an oversight, adding it now... |
Beta Was this translation helpful? Give feedback.
0 replies
-
Resolved with this commit: 7da4ff7 Thanks again. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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?
Beta Was this translation helpful? Give feedback.
All reactions