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/token.rs | |
parent | 9666eea62b8cf763027d1f01acbb403c1c6097e0 (diff) | |
download | makers-a3d602d6e84a91b7656b80e3a7e45caa532b841e.tar.gz makers-a3d602d6e84a91b7656b80e3a7e45caa532b841e.zip |
avoid redundancy
Diffstat (limited to 'src/makefile/token.rs')
-rw-r--r-- | src/makefile/token.rs | 1 |
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>); |