summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2022-01-18 00:47:39 -0500
committerJesse Luehrs <doy@tozt.net>2022-01-18 00:47:39 -0500
commitd53e7af40835b06a391bd8780edaa0160eec2411 (patch)
tree055765a1f34956b2a822bd40fe2df332501a805b /src
parent53e0cb5c7b2002a5ca2cbe3e82d645c9a7b8ab85 (diff)
downloadnbsh-d53e7af40835b06a391bd8780edaa0160eec2411.tar.gz
nbsh-d53e7af40835b06a391bd8780edaa0160eec2411.zip
clippy
Diffstat (limited to 'src')
-rw-r--r--src/parse/ast.rs2
-rw-r--r--src/shell/history/mod.rs2
2 files changed, 0 insertions, 4 deletions
diff --git a/src/parse/ast.rs b/src/parse/ast.rs
index 5dabb43..bd177a4 100644
--- a/src/parse/ast.rs
+++ b/src/parse/ast.rs
@@ -351,7 +351,6 @@ impl WordPart {
}
}
- #[allow(clippy::needless_pass_by_value)]
fn build_ast(
pair: pest::iterators::Pair<Rule>,
) -> impl Iterator<Item = Self> + '_ {
@@ -402,7 +401,6 @@ struct Redirect {
}
impl Redirect {
- #[allow(clippy::needless_pass_by_value)]
fn build_ast(pair: pest::iterators::Pair<Rule>) -> Self {
assert!(matches!(pair.as_rule(), Rule::redirect));
let mut iter = pair.into_inner();
diff --git a/src/shell/history/mod.rs b/src/shell/history/mod.rs
index 60979b6..1bc4e62 100644
--- a/src/shell/history/mod.rs
+++ b/src/shell/history/mod.rs
@@ -376,8 +376,6 @@ async fn spawn_commands(
}
if let (true, Some(status)) = (read_done, exit_done) {
nix::unistd::close(from_r)?;
- // nix::sys::signal::Signal is repr(i32)
- #[allow(clippy::as_conversions)]
return Ok(status);
}
}