diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-10 21:43:00 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-10 21:43:00 +0200 |
commit | b76ff335a807be97a79e272b5e9bf08a99d3d8d6 (patch) | |
tree | 414e004aaaa69fa5a7987028ba54429e0707e3a3 /src/synth | |
parent | 4be73be561379cff6b0e5966e020d90387085034 (diff) | |
download | ghdl-b76ff335a807be97a79e272b5e9bf08a99d3d8d6.tar.gz ghdl-b76ff335a807be97a79e272b5e9bf08a99d3d8d6.tar.bz2 ghdl-b76ff335a807be97a79e272b5e9bf08a99d3d8d6.zip |
vhdl: decouple errorouts a bit more.
Diffstat (limited to 'src/synth')
-rw-r--r-- | src/synth/synth-errors.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/synth/synth-errors.adb b/src/synth/synth-errors.adb index 4acfe560c..a8e4c04c7 100644 --- a/src/synth/synth-errors.adb +++ b/src/synth/synth-errors.adb @@ -24,13 +24,13 @@ package body Synth.Errors is Arg1 : Earg_Type) is begin Report_Msg (Msgid_Error, Errorout.Elaboration, - Loc, Msg, (1 => Arg1)); + +Loc, Msg, (1 => Arg1)); end Error_Msg_Synth; procedure Error_Msg_Synth (Loc : Location_Type; Msg : String) is begin Report_Msg (Msgid_Error, Errorout.Elaboration, - Loc, Msg, (1 .. 0 => <>)); + +Loc, Msg, (1 .. 0 => <>)); end Error_Msg_Synth; end Synth.Errors; |