fix clippy issues
diff --git a/bindgen/ir/context.rs b/bindgen/ir/context.rs
index 99c75d6..37f8d59 100644
--- a/bindgen/ir/context.rs
+++ b/bindgen/ir/context.rs
@@ -2108,13 +2108,13 @@
pch.clone().into_boxed_str(),
];
let mut skip_next = false;
- for arg in self.options.fallback_clang_args.iter() {
+ for arg in &self.options.fallback_clang_args {
if arg.as_ref() == "-include" {
skip_next = true;
} else if skip_next {
skip_next = false;
} else {
- c_args.push(arg.clone())
+ c_args.push(arg.clone());
}
}
self.fallback_tu =