diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-05-17 12:06:01 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-09-24 18:48:48 -0700 |
commit | d32fc0563d629eac112f0b7b5b0f21d434f0a74b (patch) | |
tree | 5c9463b024558e41c888a56459d07acdb1424492 /docs/markdown/snippets | |
parent | e2260650a046a54f97f57e76ad6f0c106f96cea0 (diff) | |
download | meson-d32fc0563d629eac112f0b7b5b0f21d434f0a74b.zip meson-d32fc0563d629eac112f0b7b5b0f21d434f0a74b.tar.gz meson-d32fc0563d629eac112f0b7b5b0f21d434f0a74b.tar.bz2 |
compilers/rust: Implement warning levels
Currently this implements 3 warning levels, 1 and 2 are just the
"default" set by rustc, 3, is "everything is a warning", and 0 is
"nothign is a warning".
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/rustc-improvements.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/markdown/snippets/rustc-improvements.md b/docs/markdown/snippets/rustc-improvements.md index 2db0a11..e874b38 100644 --- a/docs/markdown/snippets/rustc-improvements.md +++ b/docs/markdown/snippets/rustc-improvements.md @@ -2,3 +2,4 @@ - Werror now works, this set's `-D warnings`, which will cause rustc to error for every warning not explicitly disabled +- warning levels have been implemented |