We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
explicit_into_iter_loop
1 parent b7c7964 commit 279102dCopy full SHA for 279102d
Cargo.toml
@@ -59,7 +59,6 @@ cast_precision_loss = "allow"
59
cast_sign_loss = "allow"
60
checked_conversions = "allow"
61
default_trait_access = "allow"
62
-explicit_into_iter_loop = "allow"
63
flat_map_option = "allow"
64
ignored_unit_patterns = "allow"
65
implicit_hasher = "allow"
bindgen/lib.rs
@@ -837,7 +837,7 @@ impl Bindings {
837
};
838
839
if let Some(search_paths) = search_paths {
840
- for path in search_paths.into_iter() {
+ for path in search_paths {
841
if let Ok(path) = path.into_os_string().into_string() {
842
options.clang_args.push("-isystem".into());
843
options.clang_args.push(path.into_boxed_str());
0 commit comments