Skip to content

Rollup of 7 pull requests #58550

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 17 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
26bd433
Move the intrinsics into a submodule
nitnelave Feb 8, 2019
564c569
Monomorphize less code in fs::{read|write}
scottmcm Feb 17, 2019
8fbb013
Mention capping forbid lints
dwijnand Feb 17, 2019
a23c40e
Add alias methods to PathBuf for underlying OsString
aaronstillwell Feb 17, 2019
dad211e
Modify doctest's auto-`fn main()` to allow `Result`s
llogiq Dec 3, 2018
dbf60d9
Fixes for implementation of PathBuf methods (aliases for OsString)
aaronstillwell Feb 17, 2019
35d8c44
Changed feature gate for new PathBuf methods
aaronstillwell Feb 17, 2019
ee948d9
Add regression test for a specialization-related ICE (#39448)
emillaine Feb 17, 2019
55c25f8
Fix doc for rustc "-g" flag
TheBiggerGuy Feb 17, 2019
88e462b
Add links to codegen docs for rustc synonym flags
TheBiggerGuy Feb 17, 2019
e91ec2b
Rollup merge of #56470 - llogiq:process-termination-doctest, r=Guilla…
GuillaumeGomez Feb 17, 2019
5843709
Rollup merge of #57997 - nitnelave:master, r=RalfJung
GuillaumeGomez Feb 17, 2019
681bc67
Rollup merge of #58530 - scottmcm:monomorphize-less, r=TimNN
GuillaumeGomez Feb 17, 2019
2fabaab
Rollup merge of #58534 - dwijnand:mention-capping-forbid-lints, r=oli…
GuillaumeGomez Feb 17, 2019
12bccb4
Rollup merge of #58539 - aaronstillwell:master, r=Mark-Simulacrum
GuillaumeGomez Feb 17, 2019
67721ed
Rollup merge of #58544 - TheBiggerGuy:rustc-doc-cli-args, r=TimNN
GuillaumeGomez Feb 17, 2019
6394d71
Rollup merge of #58545 - emlai:regression-test-for-39448, r=Centril
GuillaumeGomez Feb 17, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/doc/rustc/src/lints/levels.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,9 @@ This lint level gives you that.
'forbid' is a special lint level that's stronger than 'deny'. It's the same
as 'deny' in that a lint at this level will produce an error, but unlike the
'deny' level, the 'forbid' level can not be overridden to be anything lower
than an error.
than an error. However, lint levels may still be capped with `--cap-lints`
(see below) so `rustc --cap-lints warn` will make lints set to 'forbid' just
warn.

## Configuring warning levels

Expand Down