##// END OF EJS Templates
rust-revlog: fix lifetime problem for RevlogEntry parent entries accessors...
rust-revlog: fix lifetime problem for RevlogEntry parent entries accessors Without this, the lifetime of the result is equated to the lifetime of the `self` reference, preventing callers, e.g., to take a `RevlogEntry` and return its `p1_entry()`, as it looks like returning something that does not outlive the *reference to* the `RevlogEntry`.

File last commit:

r45179:1f5ab1a9 default
r51270:c101e775 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");
}