diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-08 07:33:04 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-08 07:33:04 +0200 |
commit | a05c5813bee6c063dc196471e66816fbca5dc50e (patch) | |
tree | 7e6e01af2cbb3bcb02bf52fab6bf3075e613a211 /src/vhdl/psl-errors.ads | |
parent | d87e8284e3dc3adced8b8aa2258e3a87097396b1 (diff) | |
download | ghdl-a05c5813bee6c063dc196471e66816fbca5dc50e.tar.gz ghdl-a05c5813bee6c063dc196471e66816fbca5dc50e.tar.bz2 ghdl-a05c5813bee6c063dc196471e66816fbca5dc50e.zip |
vhdl: extract vhdl.errors from errorout.
Diffstat (limited to 'src/vhdl/psl-errors.ads')
-rw-r--r-- | src/vhdl/psl-errors.ads | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vhdl/psl-errors.ads b/src/vhdl/psl-errors.ads index c65443aee..4d33faa51 100644 --- a/src/vhdl/psl-errors.ads +++ b/src/vhdl/psl-errors.ads @@ -1,5 +1,6 @@ with Types; use Types; with Errorout; use Errorout; +with Vhdl.Errors; use Vhdl.Errors; with Files_Map; package PSL.Errors is @@ -10,5 +11,5 @@ package PSL.Errors is Errorout.Error_Kind; procedure Error_Msg_Sem (Msg: String; Loc: PSL_Node) - renames Errorout.Error_Msg_Sem_1; + renames Vhdl.Errors.Error_Msg_Sem_1; end PSL.Errors; |