From 3a2bba1c54c7445196a78192970be62eb1041746 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABlle=20Huisman?= Date: Fri, 2 Jan 2026 14:29:34 +0100 Subject: [PATCH] fix: remove non-debug types from todo statements --- packages/fortifier-macros/src/validate/generics.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/fortifier-macros/src/validate/generics.rs b/packages/fortifier-macros/src/validate/generics.rs index 75349ec..db54fdf 100644 --- a/packages/fortifier-macros/src/validate/generics.rs +++ b/packages/fortifier-macros/src/validate/generics.rs @@ -154,11 +154,11 @@ fn path_equals_path(a: &Path, b: &Path) -> bool { fn path_argument_equals_path_argument(a: &PathArguments, b: &PathArguments) -> bool { match (a, b) { (PathArguments::None, PathArguments::None) => true, - (PathArguments::AngleBracketed(a), PathArguments::AngleBracketed(b)) => { - todo!("path arguments angle bracketed {a:#?} == {b:#?}") + (PathArguments::AngleBracketed(_a), PathArguments::AngleBracketed(_b)) => { + todo!("path argument equals path arguments angle bracketed") } - (PathArguments::Parenthesized(a), PathArguments::Parenthesized(b)) => { - todo!("path arguments parenthesized {a:#?} == {b:#?}") + (PathArguments::Parenthesized(_a), PathArguments::Parenthesized(_b)) => { + todo!("path argument equals path arguments parenthesized") } _ => false, }