Replies: 1 comment
-
Thanks! That's a bug, fixed in 089a534 |
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
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?
Beta Was this translation helpful? Give feedback.
All reactions