File tree 4 files changed +7
-2
lines changed
4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ set -xeu
4
+ cd " $( dirname " $0 " ) /.."
5
+
6
+ cargo rustc --lib --features " $BINDGEN_FEATURES " -- -Dwarnings
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ case "$BINDGEN_JOB" in
38
38
39
39
" misc" )
40
40
./ci/assert-docs.sh
41
+ ./ci/assert-warnings.sh
41
42
./ci/test-book.sh
42
43
./ci/no-includes.sh
43
44
./ci/assert-rustfmt.sh
Original file line number Diff line number Diff line change 1
1
//! Contains code for selecting features
2
2
3
3
#![ deny( missing_docs) ]
4
- #![ deny( warnings) ]
5
4
#![ deny( unused_extern_crates) ]
6
5
7
6
use std:: io;
Original file line number Diff line number Diff line change 8
8
//! See the [Users Guide](https://rust-lang.github.io/rust-bindgen/) for
9
9
//! additional documentation.
10
10
#![ deny( missing_docs) ]
11
- #![ deny( warnings) ]
12
11
#![ deny( unused_extern_crates) ]
13
12
// To avoid rather annoying warnings when matching with CXCursor_xxx as a
14
13
// constant.
You can’t perform that action at this time.
0 commit comments