Skip to content
This repository was archived by the owner on Aug 12, 2021. It is now read-only.

Commit ed03175

Browse files
committed
Auto merge of #38679 - alexcrichton:always-deny-warnings, r=nrc
Remove not(stage0) from deny(warnings) Historically this was done to accommodate bugs in lints, but there hasn't been a bug in a lint since this feature was added which the warnings affected. Let's completely purge warnings from all our stages by denying warnings in all stages. This will also assist in tracking down `stage0` code to be removed whenever we're updating the bootstrap compiler.
2 parents 70b9d5c + ff8a948 commit ed03175

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
html_playground_url = "https://play.rust-lang.org/",
5353
test(attr(deny(warnings))))]
5454
#![deny(missing_docs)]
55-
#![cfg_attr(not(stage0), deny(warnings))]
55+
#![deny(warnings)]
5656

5757
#![feature(box_syntax)]
5858
#![feature(staged_api)]

0 commit comments

Comments
 (0)