diff options
author | Tristan Gingold <tgingold@free.fr> | 2023-01-15 20:20:47 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2023-01-15 20:20:47 +0100 |
commit | 269268f4950f43bd8233bd4abe56fc35ed193b11 (patch) | |
tree | 05d7af55b13e9c949c0cc14cf916360c0dd434dc | |
parent | 84bf6bee9480a93b789a4d1ffee380117e3ab177 (diff) | |
download | ghdl-269268f4950f43bd8233bd4abe56fc35ed193b11.tar.gz ghdl-269268f4950f43bd8233bd4abe56fc35ed193b11.tar.bz2 ghdl-269268f4950f43bd8233bd4abe56fc35ed193b11.zip |
pyGHDL: update errorout.py
-rw-r--r-- | pyGHDL/libghdl/errorout.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pyGHDL/libghdl/errorout.py b/pyGHDL/libghdl/errorout.py index fc0e19f5c..d028d6d5a 100644 --- a/pyGHDL/libghdl/errorout.py +++ b/pyGHDL/libghdl/errorout.py @@ -52,6 +52,7 @@ class Msgid(IntEnum): Warnid_Unkept_Attribute = 33 Warnid_Unhandled_Attribute = 34 Warnid_Static = 35 - Msgid_Warning = 36 - Msgid_Error = 37 - Msgid_Fatal = 38 + Warnid_Elaboration = 36 + Msgid_Warning = 37 + Msgid_Error = 38 + Msgid_Fatal = 39 |