diff options
author | Colin Walters <walters@src.gnome.org> | 2008-10-25 15:20:54 +0000 |
---|---|---|
committer | Colin Walters <walters@src.gnome.org> | 2008-10-25 15:20:54 +0000 |
commit | d15f8cde47100a77189d5febb8704c0e4d736594 (patch) | |
tree | 651b1c0990dbf5ec99c77139e1a648aca63d5ec5 /tests/scanner/utility.h | |
parent | c7d2a0712f6301aa670f87a98e8f217bf3c54a7a (diff) | |
download | gobject-introspection-d15f8cde47100a77189d5febb8704c0e4d736594.tar.gz |
Bug 557786 - support fixed size arrays
svn path=/trunk/; revision=814
Diffstat (limited to 'tests/scanner/utility.h')
-rw-r--r-- | tests/scanner/utility.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/scanner/utility.h b/tests/scanner/utility.h index d1f581a0..a592a96d 100644 --- a/tests/scanner/utility.h +++ b/tests/scanner/utility.h @@ -44,6 +44,7 @@ typedef struct int field; guint bitfield1 : 3; guint bitfield2 : 2; + guint8 data[16]; } UtilityStruct; typedef union |