Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ModProg committed Mar 17, 2024
1 parent 18e935d commit 30b3316
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions crates/bonsaidb-macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -355,9 +355,7 @@ impl AttributeBase for NullHandling {
}

impl AttributeValue for NullHandling {
fn parse_value(
input: ParseStream,
) -> syn::Result<SpannedValue<Self>> {
fn parse_value(input: ParseStream<'_>) -> syn::Result<SpannedValue<Self>> {
let ident: Ident = input.parse()?;

Ok(SpannedValue::new(
Expand Down

0 comments on commit 30b3316

Please sign in to comment.