diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-09-07 18:17:46 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-09-07 18:20:05 +0200 |
commit | 8d72de994e26b4cf922ca0e9ab5e652984e3871e (patch) | |
tree | 973384b1a55ca53f9ea16d1710e0ced616a318f0 /src | |
parent | 476868bcc522bbc40288eedbfd4dff27836bc90f (diff) | |
download | ghdl-8d72de994e26b4cf922ca0e9ab5e652984e3871e.tar.gz ghdl-8d72de994e26b4cf922ca0e9ab5e652984e3871e.tar.bz2 ghdl-8d72de994e26b4cf922ca0e9ab5e652984e3871e.zip |
options.adb: -Werror now applies on unclassified warnings.
Diffstat (limited to 'src')
-rw-r--r-- | src/options.adb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/options.adb b/src/options.adb index 3191cd575..265b4614a 100644 --- a/src/options.adb +++ b/src/options.adb @@ -66,6 +66,7 @@ package body Options is begin -- Handle -Werror. if Opt = "error" then + Warning_Error (Msgid_Warning, Val); for I in Msgid_Warnings loop Warning_Error (I, Val); end loop; |