diff options
author | Melody Horn <melody@boringcactus.com> | 2021-03-31 13:28:28 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-03-31 13:28:28 -0600 |
commit | a3d602d6e84a91b7656b80e3a7e45caa532b841e (patch) | |
tree | cbedb12fb49f9685cc2512882fe7bc1016b90228 /src/makefile/mod.rs | |
parent | 9666eea62b8cf763027d1f01acbb403c1c6097e0 (diff) | |
download | makers-a3d602d6e84a91b7656b80e3a7e45caa532b841e.tar.gz makers-a3d602d6e84a91b7656b80e3a7e45caa532b841e.zip |
avoid redundancy
Diffstat (limited to 'src/makefile/mod.rs')
-rw-r--r-- | src/makefile/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefile/mod.rs b/src/makefile/mod.rs index d9c9b46..94a104a 100644 --- a/src/makefile/mod.rs +++ b/src/makefile/mod.rs @@ -22,9 +22,9 @@ mod target; mod token; use command_line::CommandLine; -use conditional::{ConditionalLine, ConditionalState}; +use conditional::{Line as ConditionalLine, State as ConditionalState}; use inference_rules::InferenceRule; -use r#macro::{MacroSet, MacroSource}; +use r#macro::{Set as MacroSet, Source as MacroSource}; use target::Target; use token::{tokenize, Token, TokenString}; |