diff options
author | Melody Horn <melody@boringcactus.com> | 2024-11-11 12:29:28 -0700 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2024-11-11 12:29:28 -0700 |
commit | 5aa6e1122830611dccc2eab9b7f4a53a10056111 (patch) | |
tree | 819bc0f574bdfeb8297dc29e002eae41d454ca5e /src/makefile/command_line.rs | |
parent | 7043c362b259bd2e8ef63965583d217ebd87b865 (diff) | |
download | makers-5aa6e1122830611dccc2eab9b7f4a53a10056111.tar.gz makers-5aa6e1122830611dccc2eab9b7f4a53a10056111.zip |
ok clippy
Diffstat (limited to 'src/makefile/command_line.rs')
-rw-r--r-- | src/makefile/command_line.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile/command_line.rs b/src/makefile/command_line.rs index 52693e0..c75c854 100644 --- a/src/makefile/command_line.rs +++ b/src/makefile/command_line.rs @@ -46,7 +46,7 @@ pub struct CommandLine { } impl CommandLine { - pub fn from(line: TokenString) -> Self { + pub const fn from(line: TokenString) -> Self { Self { execution_line: line, } |