diff options
author | Alexey Yerin <yyp@disroot.org> | 2023-08-07 00:20:31 +0300 |
---|---|---|
committer | Alexey Yerin <yyp@disroot.org> | 2023-08-07 00:20:31 +0300 |
commit | a222d0d6dbd976d756a6e7d5f30f6841bc23278f (patch) | |
tree | 8ab7a6943f335b95405f62e39281525e0a8e3a15 | |
parent | 2a7725de05f0c3971f46fdd429cff5742b0f9a09 (diff) |
Remove object_type::BITFIELD check
-rw-r--r-- | cmd/hare-gi/emit.ha | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cmd/hare-gi/emit.ha b/cmd/hare-gi/emit.ha index 78f9e9f..4014b76 100644 --- a/cmd/hare-gi/emit.ha +++ b/cmd/hare-gi/emit.ha @@ -603,7 +603,6 @@ fn emit_type(ctx: *context, t: (gir::any_type | gir::callback)) (void | io::erro const (_, id, objtype) = obj; if (objtype != object_type::ALIAS && objtype != object_type::ENUM - && objtype != object_type::BITFIELD && objtype != object_type::CALLBACK) { fmt::fprintf( ctx.current.output, |