Skip to content

Commit 6d3a776

Browse files
Deny warnings in build system and in rustc_codegen_gcc
1 parent 9848c66 commit 6d3a776

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

build_system/src/main.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![deny(warnings)]
2+
13
use std::{env, process};
24

35
mod build;

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#![recursion_limit = "256"]
2424
#![warn(rust_2018_idioms)]
2525
#![warn(unused_lifetimes)]
26+
#![deny(warnings)]
2627
#![deny(clippy::pattern_type_mismatch)]
2728
#![allow(clippy::needless_lifetimes, clippy::uninlined_format_args)]
2829

0 commit comments

Comments
 (0)