Skip to content
Snippets Groups Projects
Commit f90796d3 authored by Raphaël Gomès's avatar Raphaël Gomès
Browse files

rust: fix clippy lints

These were highlighted by the latest version of clippy (1.82.0).
parent a3fa37bd
No related branches found
No related tags found
3 merge requests!1292Draft: 7.0rc preparation,!1115ci: disable caching of the wheels that get built to save space,!1046Rust fixes and follow-ups
......@@ -206,7 +206,7 @@
new_bases
.into_iter()
.filter(|&rev| rev != NULL_REVISION)
.map(|r| {
.inspect(|&r| {
if r > max_base {
max_base = r;
}
......@@ -210,7 +210,6 @@
if r > max_base {
max_base = r;
}
r
}),
);
self.max_base = max_base;
......
......@@ -217,7 +217,7 @@
impl FilelogRevisionData {
/// Split into metadata and data
pub fn split(&self) -> Result<(Option<&[u8]>, &[u8]), HgError> {
const DELIMITER: &[u8; 2] = &[b'\x01', b'\n'];
const DELIMITER: &[u8; 2] = b"\x01\n";
if let Some(rest) = self.0.drop_prefix(DELIMITER) {
if let Some((metadata, data)) = rest.split_2_by_slice(DELIMITER) {
......
......@@ -802,5 +802,5 @@
return Ok(func());
}
self.enter_writing_context(data_end, transaction)
.map_err(|e| {
.inspect_err(|_| {
self.exit_writing_context();
......@@ -806,5 +806,4 @@
self.exit_writing_context();
e
})?;
let res = func();
self.exit_writing_context();
......
......@@ -31,6 +31,6 @@
///
/// * `$name` is the identifier to give to the resulting Rust struct.
/// * `$leaked` corresponds to `UnsafePyLeaked` in the matching `@shared data`
/// declaration.
/// declaration.
/// * `$iterator_type` is the type of the Rust iterator.
/// * `$success_func` is a function for processing the Rust `(key, value)`
......@@ -35,6 +35,6 @@
/// * `$iterator_type` is the type of the Rust iterator.
/// * `$success_func` is a function for processing the Rust `(key, value)`
/// tuple on iteration success, turning it into something Python understands.
/// tuple on iteration success, turning it into something Python understands.
/// * `$success_func` is the return type of `$success_func`
///
/// # Safety
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment