You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I know that the C++ primitive types are discouraged, although the cppfront equivalents are declared in cpp2util.h, e.g.:
using ushort = unsignedshort;
using uint = unsignedint;
using ulong = unsignedlong;
using longlong = longlong;
using ulonglong = unsignedlonglong;
using longdouble = longdouble;
using _schar = signedchar; // normally use i8 insteadusing _uchar = unsignedchar; // normally use u8 instead
However, I noticed that not all of them work as expected. For example:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
I know that the C++ primitive types are discouraged, although the cppfront equivalents are declared in
cpp2util.h, e.g.:However, I noticed that not all of them work as expected. For example:
ushort, I getcpp2::ushort: OKulong, I getcpp2::ulong: OKlonglong, I getcpp2::longlong: OKBut:
ulonglong, I getulonglong: Not OK_schar, I get_schar: Not OK_uchar, I get_uchar: Not OKWhy is this happening?
All reactions