diff options
author | Melody Horn <melody@boringcactus.com> | 2024-11-11 12:28:27 -0700 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2024-11-11 12:28:27 -0700 |
commit | 7043c362b259bd2e8ef63965583d217ebd87b865 (patch) | |
tree | ce2762321ab4f76440d43b42237ee93fab91a2f0 /src | |
parent | e0d7617722b5c22d33b89691d389706455d8c850 (diff) | |
download | makers-7043c362b259bd2e8ef63965583d217ebd87b865.tar.gz makers-7043c362b259bd2e8ef63965583d217ebd87b865.zip |
i may be stupid
Diffstat (limited to 'src')
-rw-r--r-- | src/makefile/macro.rs | 3 | ||||
-rw-r--r-- | src/makefile/macro_scope.rs | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/makefile/macro.rs b/src/makefile/macro.rs index d652fdb..301173a 100644 --- a/src/makefile/macro.rs +++ b/src/makefile/macro.rs @@ -6,12 +6,11 @@ use std::fmt; #[cfg(feature = "full")] use std::io::BufRead; - #[cfg(feature = "full")] use super::eval_context::DeferredEvalContext; -use super::{ItemSource, TokenString}; #[cfg(feature = "full")] use super::MacroScopeStack; +use super::{ItemSource, TokenString}; #[cfg(feature = "full")] use eyre::Result; diff --git a/src/makefile/macro_scope.rs b/src/makefile/macro_scope.rs index 9edab95..bee603e 100644 --- a/src/makefile/macro_scope.rs +++ b/src/makefile/macro_scope.rs @@ -1,4 +1,3 @@ - use std::borrow::Cow; use std::collections::HashSet; #[cfg(feature = "full")] |