##// END OF EJS Templates
rust-clippy: simplify `match` to `if let`...
rust-clippy: simplify `match` to `if let` This was hinted at by clippy, and makes it more obvious that nothing is happening in the `None` case.

File last commit:

r45179:1f5ab1a9 default
r52164:eab5b061 default
Show More
build.rs
7 lines | 155 B | application/rls-services+xml | RustLexer
fn main() {
cc::Build::new()
.warnings(true)
.file("src/sendfds.c")
.file("src/sighandlers.c")
.compile("procutil");
}