Skip to content

Commit 5976766

Browse files
author
bors-servo
authored
Auto merge of #343 - upsuper:fix-warning, r=emilio
Fix an unused_mut warning
2 parents 517ce8b + a1e2029 commit 5976766

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bindgen/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ pub fn main() {
2121
})
2222
.expect("Failed to set logger.");
2323

24-
let mut bind_args: Vec<_> = env::args().collect();
24+
let bind_args: Vec<_> = env::args().collect();
2525

2626
let version = clang_version();
2727
let expected_version = if cfg!(feature = "llvm_stable") {

0 commit comments

Comments
 (0)