diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-20 18:16:34 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-21 20:41:20 +0200 |
commit | 4a850818bc1c674d6b4e9c4bcc44ee6bbaa13ffc (patch) | |
tree | 39db5b4ffd9706d6718bf03fa5d77936aa9dad57 /src/vhdl/python/libghdl/thin/errorout.py | |
parent | fea04f795271db8fc56655bdade20174efca8fbb (diff) | |
download | ghdl-4a850818bc1c674d6b4e9c4bcc44ee6bbaa13ffc.tar.gz ghdl-4a850818bc1c674d6b4e9c4bcc44ee6bbaa13ffc.tar.bz2 ghdl-4a850818bc1c674d6b4e9c4bcc44ee6bbaa13ffc.zip |
errorout-memory: handle message groups; adjust python
Diffstat (limited to 'src/vhdl/python/libghdl/thin/errorout.py')
-rw-r--r-- | src/vhdl/python/libghdl/thin/errorout.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/vhdl/python/libghdl/thin/errorout.py b/src/vhdl/python/libghdl/thin/errorout.py index f059d99cc..5a79a5534 100644 --- a/src/vhdl/python/libghdl/thin/errorout.py +++ b/src/vhdl/python/libghdl/thin/errorout.py @@ -1,13 +1,3 @@ -from ctypes import c_int8, c_int32, Structure - -class Error_Record(Structure): - _fields_ = [("origin", c_int8), - ("id", c_int8), - ("file", c_int32), - ("line", c_int32), - ("offset", c_int32), - ("length", c_int32)] - class Msgid: |