We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
explicit_into_iter_loop
1 parent a3f877b commit 43071a1Copy full SHA for 43071a1
Cargo.toml
@@ -58,7 +58,6 @@ cast_possible_wrap = "allow"
58
cast_precision_loss = "allow"
59
cast_sign_loss = "allow"
60
default_trait_access = "allow"
61
-explicit_into_iter_loop = "allow"
62
ignored_unit_patterns = "allow"
63
implicit_hasher = "allow"
64
items_after_statements = "allow"
bindgen/lib.rs
@@ -835,7 +835,7 @@ impl Bindings {
835
};
836
837
if let Some(search_paths) = search_paths {
838
- for path in search_paths.into_iter() {
+ for path in search_paths {
839
if let Ok(path) = path.into_os_string().into_string() {
840
options.clang_args.push("-isystem".into());
841
options.clang_args.push(path.into_boxed_str());
0 commit comments