From 8732eba38eba7ae99361cde357b546d14611caef Mon Sep 17 00:00:00 2001 From: Parker Timmerman Date: Fri, 20 Dec 2024 13:36:22 -0500 Subject: [PATCH] another clippy fix --- src/walkabout/src/parse.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/walkabout/src/parse.rs b/src/walkabout/src/parse.rs index c574f22787bf9..b1f3f0e7a11f3 100644 --- a/src/walkabout/src/parse.rs +++ b/src/walkabout/src/parse.rs @@ -20,7 +20,6 @@ use syn::{Data, DataEnum, DataStruct, DataUnion, DeriveInput, Item}; /// Returns [`DeriveInput`]s representing all struct and enum items in the /// module. This is exactly what a custom derive procedural macro would see, /// except that we can present information for all types simultaneously. - pub fn parse_mod

(path: P) -> Result> where P: AsRef,