From 4b8a9d80d37c892695f102a48898fe1beacb593c Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Wed, 2 Oct 2024 21:09:07 -0600 Subject: lib9p: Add the DM bitfield --- lib9p/types.gen | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib9p/types.gen') diff --git a/lib9p/types.gen b/lib9p/types.gen index 1b43fa4..3e800e8 100755 --- a/lib9p/types.gen +++ b/lib9p/types.gen @@ -238,6 +238,7 @@ def parse_file( if not isinstance(_bf, Bitfield): raise NameError(f"Type {repr(_bf.name)} is not a bitfield") bf = _bf + prev = bf else: if not isinstance(prev, Bitfield): raise SyntaxError( @@ -269,6 +270,7 @@ def parse_file( if not isinstance(_bf, Bitfield): raise NameError(f"Type {repr(_bf.name)} is not a bitfield") bf = _bf + prev = bf else: if not isinstance(prev, Bitfield): raise SyntaxError( -- cgit v1.2.3-2-g168b