Skip to content

Commit

Permalink
fix: Allow clippy::new_without_default
Browse files Browse the repository at this point in the history
Fixes #27.
  • Loading branch information
lylythechosenone committed Apr 2, 2024
1 parent 4fc6a03 commit 396b2b9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@
//! pub static STACK_SIZE_REQUEST: StackSizeRequest = StackSizeRequest::new().with_size(STACK_SIZE);
//! ```
// `Default` is not const anyway, so implementing is not very useful.
#![allow(clippy::new_without_default)]

use core::cell::UnsafeCell;

pub mod file;
Expand Down

0 comments on commit 396b2b9

Please sign in to comment.