Skip to content

Commit

Permalink
Fix some Clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickpeterse committed Oct 30, 2024
1 parent 50fcd0e commit ce8cbe2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions jacobs2021/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::new_without_default)]

//! An implementation of the algorithm described at
//! https://julesjacobs.com/notes/patternmatching/patternmatching.pdf.
use std::collections::{HashMap, HashSet};
Expand Down
2 changes: 1 addition & 1 deletion sestoft1996/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![cfg_attr(feature = "cargo-clippy", allow(clippy::too_many_arguments))]
#![allow(clippy::too_many_arguments)]

pub mod idiomatic;
pub mod raw;

0 comments on commit ce8cbe2

Please sign in to comment.