diff options
Diffstat (limited to 'lib9p/types.gen')
-rwxr-xr-x | lib9p/types.gen | 2 |
1 files changed, 2 insertions, 0 deletions
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( |