diff options
Diffstat (limited to 'src/vhdl/errorout.ads')
-rw-r--r-- | src/vhdl/errorout.ads | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/vhdl/errorout.ads b/src/vhdl/errorout.ads index c548f5822..9b802c0c2 100644 --- a/src/vhdl/errorout.ads +++ b/src/vhdl/errorout.ads @@ -36,12 +36,10 @@ package Errorout is Max_Nbr_Errors : constant Natural := 100; type Msgid_Type is - (-- Any note + ( + -- Any note Msgid_Note, - -- Any warning - Msgid_Warning, - -- Specific warnings -- Design unit redefines another design unit. @@ -116,11 +114,15 @@ package Errorout is -- Violation of staticness rules Warnid_Static, + -- Any warning + Msgid_Warning, + -- Any error Msgid_Error, -- Any fatal error - Msgid_Fatal); + Msgid_Fatal + ); -- All specific warning messages. subtype Msgid_Warnings is Msgid_Type |