Skip to content

Commit 4de3ada

Browse files
nyurikemilio
authored andcommitted
A few minor clippy lints
* Fix `unnested_or_patterns` * Do a few `match_same_arms`, but keep the lint disabled
1 parent 14ee85b commit 4de3ada

File tree

9 files changed

+47
-51
lines changed

9 files changed

+47
-51
lines changed

Cargo.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ ignored_unit_patterns = "allow"
6565
implicit_hasher = "allow"
6666
inconsistent_struct_constructor = "allow"
6767
items_after_statements = "allow"
68+
match_same_arms = "allow"
6869
maybe_infinite_iter = "allow"
6970
missing_errors_doc = "allow"
7071
missing_panics_doc = "allow"
@@ -73,19 +74,16 @@ must_use_candidate = "allow"
7374
ptr_as_ptr = "allow"
7475
redundant_closure_for_method_calls = "allow"
7576
return_self_not_must_use = "allow"
76-
#should_panic_without_expect = "allow"
7777
similar_names = "allow"
7878
struct_excessive_bools = "allow"
7979
struct_field_names = "allow"
8080
unnecessary_wraps = "allow"
81-
unnested_or_patterns = "allow"
8281
unreadable_literal = "allow"
8382
used_underscore_binding = "allow"
8483
wildcard_imports = "allow"
8584

8685
# TODO
8786
borrow_as_ptr = "allow"
88-
match_same_arms = "allow"
8987
trivially_copy_pass_by_ref = "allow"
9088
needless_pass_by_value = "allow"
9189
unused_self = "allow"

bindgen-tests/build.rs

+12-17
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use std::char;
22
use std::env;
3-
use std::ffi::OsStr;
43
use std::fs::{self, File};
54
use std::io::Write;
65
use std::path::{Path, PathBuf};
@@ -23,23 +22,19 @@ pub fn main() {
2322
println!("cargo:rerun-if-changed=tests/headers");
2423

2524
for entry in entries {
26-
match entry.path().extension().and_then(OsStr::to_str) {
27-
Some("h") | Some("hpp") => {
28-
let func = entry
29-
.file_name()
30-
.to_str()
31-
.unwrap()
32-
.replace(|c| !char::is_alphanumeric(c), "_")
33-
.replace("__", "_")
34-
.to_lowercase();
35-
writeln!(
36-
dst,
37-
"test_header!(header_{func}, {:?});",
38-
entry.path(),
39-
)
25+
// TODO: file_is_cpp() in bindgen/lib.rs checks for hpp,hxx,hh, and h++ - should this be consistent?
26+
if entry.path().extension().map_or(false, |ext| {
27+
ext.eq_ignore_ascii_case("h") || ext.eq_ignore_ascii_case("hpp")
28+
}) {
29+
let func = entry
30+
.file_name()
31+
.to_str()
32+
.unwrap()
33+
.replace(|c| !char::is_alphanumeric(c), "_")
34+
.replace("__", "_")
35+
.to_lowercase();
36+
writeln!(dst, "test_header!(header_{func}, {:?});", entry.path())
4037
.unwrap();
41-
}
42-
_ => {}
4338
}
4439
}
4540

bindgen/codegen/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3003,7 +3003,7 @@ impl Method {
30033003
let cc = &ctx.options().codegen_config;
30043004
match self.kind() {
30053005
MethodKind::Constructor => cc.constructors(),
3006-
MethodKind::Destructor => cc.destructors(),
3006+
MethodKind::Destructor |
30073007
MethodKind::VirtualDestructor { .. } => cc.destructors(),
30083008
MethodKind::Static |
30093009
MethodKind::Normal |

bindgen/ir/analysis/derive.rs

+16-11
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ impl DeriveTrait {
524524

525525
fn can_derive_fnptr(&self, f: &FunctionSig) -> CanDerive {
526526
match (self, f.function_pointers_can_derive()) {
527-
(DeriveTrait::Copy, _) | (DeriveTrait::Default, _) | (_, true) => {
527+
(DeriveTrait::Copy | DeriveTrait::Default, _) | (_, true) => {
528528
trace!(" function pointer can derive {self}");
529529
CanDerive::Yes
530530
}
@@ -565,14 +565,17 @@ impl DeriveTrait {
565565
fn can_derive_simple(&self, kind: &TypeKind) -> CanDerive {
566566
match (self, kind) {
567567
// === Default ===
568-
(DeriveTrait::Default, TypeKind::Void) |
569-
(DeriveTrait::Default, TypeKind::NullPtr) |
570-
(DeriveTrait::Default, TypeKind::Enum(..)) |
571-
(DeriveTrait::Default, TypeKind::Reference(..)) |
572-
(DeriveTrait::Default, TypeKind::TypeParam) |
573-
(DeriveTrait::Default, TypeKind::ObjCInterface(..)) |
574-
(DeriveTrait::Default, TypeKind::ObjCId) |
575-
(DeriveTrait::Default, TypeKind::ObjCSel) => {
568+
(
569+
DeriveTrait::Default,
570+
TypeKind::Void |
571+
TypeKind::NullPtr |
572+
TypeKind::Enum(..) |
573+
TypeKind::Reference(..) |
574+
TypeKind::TypeParam |
575+
TypeKind::ObjCInterface(..) |
576+
TypeKind::ObjCId |
577+
TypeKind::ObjCSel,
578+
) => {
576579
trace!(" types that always cannot derive Default");
577580
CanDerive::No
578581
}
@@ -582,8 +585,10 @@ impl DeriveTrait {
582585
)
583586
}
584587
// === Hash ===
585-
(DeriveTrait::Hash, TypeKind::Float(..)) |
586-
(DeriveTrait::Hash, TypeKind::Complex(..)) => {
588+
(
589+
DeriveTrait::Hash,
590+
TypeKind::Float(..) | TypeKind::Complex(..),
591+
) => {
587592
trace!(" float cannot derive Hash");
588593
CanDerive::No
589594
}

bindgen/ir/analysis/has_float.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ impl HasFloat<'_> {
5656
EdgeKind::FunctionParameter |
5757
EdgeKind::InnerType |
5858
EdgeKind::InnerVar |
59-
EdgeKind::Method => false,
59+
EdgeKind::Method |
6060
EdgeKind::Generic => false,
6161
}
6262
}

bindgen/ir/analysis/has_type_param_in_array.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ impl HasTypeParameterInArray<'_> {
5858
EdgeKind::FunctionParameter |
5959
EdgeKind::InnerType |
6060
EdgeKind::InnerVar |
61-
EdgeKind::Method => false,
61+
EdgeKind::Method |
6262
EdgeKind::Generic => false,
6363
}
6464
}

bindgen/ir/function.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -290,15 +290,15 @@ pub(crate) struct FunctionSig {
290290
fn get_abi(cc: CXCallingConv) -> ClangAbi {
291291
use clang_sys::*;
292292
match cc {
293-
CXCallingConv_Default => ClangAbi::Known(Abi::C),
294-
CXCallingConv_C => ClangAbi::Known(Abi::C),
293+
CXCallingConv_Default | CXCallingConv_C => ClangAbi::Known(Abi::C),
295294
CXCallingConv_X86StdCall => ClangAbi::Known(Abi::Stdcall),
296295
CXCallingConv_X86FastCall => ClangAbi::Known(Abi::Fastcall),
297296
CXCallingConv_X86ThisCall => ClangAbi::Known(Abi::ThisCall),
298-
CXCallingConv_X86VectorCall => ClangAbi::Known(Abi::Vectorcall),
297+
CXCallingConv_X86VectorCall | CXCallingConv_AArch64VectorCall => {
298+
ClangAbi::Known(Abi::Vectorcall)
299+
}
299300
CXCallingConv_AAPCS => ClangAbi::Known(Abi::Aapcs),
300301
CXCallingConv_X86_64Win64 => ClangAbi::Known(Abi::Win64),
301-
CXCallingConv_AArch64VectorCall => ClangAbi::Known(Abi::Vectorcall),
302302
other => ClangAbi::Unknown(other),
303303
}
304304
}

bindgen/ir/int.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,7 @@ impl IntKind {
9999
SChar | Short | Int | Long | LongLong | I8 | I16 | I32 | I64 |
100100
I128 => true,
101101

102-
Char { is_signed } => is_signed,
103-
104-
Custom { is_signed, .. } => is_signed,
102+
Char { is_signed } | Custom { is_signed, .. } => is_signed,
105103
}
106104
}
107105

bindgen/ir/item.rs

+10-10
Original file line numberDiff line numberDiff line change
@@ -1012,15 +1012,15 @@ impl Item {
10121012
FunctionKind::Method(MethodKind::Constructor) => {
10131013
cc.constructors()
10141014
}
1015-
FunctionKind::Method(MethodKind::Destructor) |
1016-
FunctionKind::Method(MethodKind::VirtualDestructor {
1017-
..
1018-
}) => cc.destructors(),
1019-
FunctionKind::Method(MethodKind::Static) |
1020-
FunctionKind::Method(MethodKind::Normal) |
1021-
FunctionKind::Method(MethodKind::Virtual { .. }) => {
1022-
cc.methods()
1023-
}
1015+
FunctionKind::Method(
1016+
MethodKind::Destructor |
1017+
MethodKind::VirtualDestructor { .. },
1018+
) => cc.destructors(),
1019+
FunctionKind::Method(
1020+
MethodKind::Static |
1021+
MethodKind::Normal |
1022+
MethodKind::Virtual { .. },
1023+
) => cc.methods(),
10241024
},
10251025
}
10261026
}
@@ -1415,7 +1415,7 @@ impl Item {
14151415
CXCursor_UsingDirective |
14161416
CXCursor_StaticAssert |
14171417
CXCursor_FunctionTemplate => {
1418-
debug!("Unhandled cursor kind {:?}: {cursor:?}", cursor.kind(),);
1418+
debug!("Unhandled cursor kind {:?}: {cursor:?}", cursor.kind());
14191419
Err(ParseError::Continue)
14201420
}
14211421

0 commit comments

Comments
 (0)