From f945ff33f9312a534ae52f1c763b4150ae41dcf6 Mon Sep 17 00:00:00 2001 From: Melody Horn Date: Sun, 10 Nov 2024 18:36:42 -0700 Subject: tidy up that MacroSet Debug implementation --- src/makefile/macro.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/makefile/macro.rs b/src/makefile/macro.rs index daf770d..7b43b13 100644 --- a/src/makefile/macro.rs +++ b/src/makefile/macro.rs @@ -3,7 +3,6 @@ use std::collections::HashMap; use std::collections::HashSet; use std::env; use std::fmt; -use std::fmt::Formatter; use std::rc::Rc; use eyre::{bail, Result, WrapErr}; @@ -372,7 +371,7 @@ impl<'parent, 'lookup> Set<'parent, 'lookup> { } impl fmt::Debug for Set<'_, '_> { - fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { + fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { let mut r#struct = f.debug_struct("Set"); r#struct.field("parent", &self.parent); r#struct.field("data", &self.data); -- cgit v1.2.3