-
I incidentally noticed that [ Didn't affect me much, I just changed to i32 instead, but I'm still curious why 8, 32, and 64 bit integers have a static type, but 16 bit ones don't? Is this just oversight, or is there a specific reason? |
Beta Was this translation helpful? Give feedback.
Answered by
sdroege
Jan 11, 2025
Replies: 1 comment
-
GObject does not provide a |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
swsnr
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
GObject does not provide a
GType
for 16 bit integers, only for 8 bit (char
/uchar
), 32 bit (int
/uint
) and 64 bit (int64
/uint64
). If GObject adds types for 16 bit integers we can support them here too.