summaryrefslogtreecommitdiffstats
path: root/src/parse/ast.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/ast.rs')
-rw-r--r--src/parse/ast.rs2
1 files changed, 0 insertions, 2 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();