##// END OF EJS Templates
rust: fix broken debug assertions...
rust: fix broken debug assertions These were caught by `clippy`. It appears no one uses the debug builds, which is how this wasn't caught before.

File last commit:

r45179:1f5ab1a9 default
r50811:321e2b7b 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");
}