mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-13 15:56:23 +01:00
girepository: gchar is a signed type
gchar is signed, not unsigned. Add "guchar" alias as unsigned for completeness (but usually it appears as guint8). https://bugzilla.gnome.org/show_bug.cgi?id=691524
This commit is contained in:
parent
f57dc1a133
commit
259c10f787
@ -379,7 +379,8 @@ typedef struct {
|
||||
} IntegerAliasInfo;
|
||||
|
||||
static IntegerAliasInfo integer_aliases[] = {
|
||||
{ "gchar", SIZEOF_CHAR, 0 },
|
||||
{ "gchar", SIZEOF_CHAR, 1 },
|
||||
{ "guchar", SIZEOF_CHAR, 0 },
|
||||
{ "gshort", SIZEOF_SHORT, 1 },
|
||||
{ "gushort", SIZEOF_SHORT, 0 },
|
||||
{ "gint", SIZEOF_INT, 1 },
|
||||
|
Loading…
Reference in New Issue
Block a user