diff options
Diffstat (limited to 'pyGHDL/libghdl/utils.py')
-rw-r--r-- | pyGHDL/libghdl/utils.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pyGHDL/libghdl/utils.py b/pyGHDL/libghdl/utils.py index e964f3ce3..98e350e03 100644 --- a/pyGHDL/libghdl/utils.py +++ b/pyGHDL/libghdl/utils.py @@ -206,7 +206,6 @@ def declarations_iter(n) -> Generator[Any, None, None]: yield n1 # Handle nested declarations: record elements, physical units, # enumeration literals... - typ = nodes.Get_Type_Definition(n1) for n2 in declarations_iter(n1): yield n2 else: |