aboutsummaryrefslogtreecommitdiff
path: root/src/makefile/token.rs
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2021-03-31 13:28:28 -0600
committerMelody Horn <melody@boringcactus.com>2021-03-31 13:28:28 -0600
commita3d602d6e84a91b7656b80e3a7e45caa532b841e (patch)
treecbedb12fb49f9685cc2512882fe7bc1016b90228 /src/makefile/token.rs
parent9666eea62b8cf763027d1f01acbb403c1c6097e0 (diff)
downloadmakers-a3d602d6e84a91b7656b80e3a7e45caa532b841e.tar.gz
makers-a3d602d6e84a91b7656b80e3a7e45caa532b841e.zip
avoid redundancy
Diffstat (limited to 'src/makefile/token.rs')
-rw-r--r--src/makefile/token.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/makefile/token.rs b/src/makefile/token.rs
index dee290e..85d2e96 100644
--- a/src/makefile/token.rs
+++ b/src/makefile/token.rs
@@ -12,6 +12,7 @@ use nom::{
Finish, IResult,
};
+#[allow(clippy::module_name_repetitions)]
#[derive(PartialEq, Eq, Clone, Debug)]
pub struct TokenString(Vec<Token>);