diff options
author | Emilio Cobos Álvarez <me@emiliocobos.me> | 2016-04-08 01:44:23 +0200 |
---|---|---|
committer | Emilio Cobos Álvarez <me@emiliocobos.me> | 2016-04-08 01:44:23 +0200 |
commit | ff3c237b191c3b141fb1338f0a9c58d56506da44 (patch) | |
tree | b2e39c777426f62f1d017cc0e04cabea510f6a65 /tests/headers/union_fields.hpp | |
parent | 62484861999e6eca13b1fbe0436111f10684b372 (diff) |
gen: Generate a more solid API for __BindgenUnionField
Diffstat (limited to 'tests/headers/union_fields.hpp')
-rw-r--r-- | tests/headers/union_fields.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/headers/union_fields.hpp b/tests/headers/union_fields.hpp new file mode 100644 index 00000000..aec3a7fd --- /dev/null +++ b/tests/headers/union_fields.hpp @@ -0,0 +1,5 @@ +typedef union { + int mInt; + float mFloat; + void* mPointer; +} nsStyleUnion; |