diff options
author | Melody Horn <melody@boringcactus.com> | 2021-03-27 17:23:12 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-03-27 17:23:12 -0600 |
commit | 7e998f46d5a7067bc921f1038e914f47bc1607ab (patch) | |
tree | 8c9f593a09c4dc2974ddf78dca07a28dbef7ded9 /src/makefile/target.rs | |
parent | d790f408294a7426460339a477026fd6d4400286 (diff) | |
download | makers-7e998f46d5a7067bc921f1038e914f47bc1607ab.tar.gz makers-7e998f46d5a7067bc921f1038e914f47bc1607ab.zip |
a couple more little things
Diffstat (limited to 'src/makefile/target.rs')
-rw-r--r-- | src/makefile/target.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile/target.rs b/src/makefile/target.rs index 443eee5..eb181cd 100644 --- a/src/makefile/target.rs +++ b/src/makefile/target.rs @@ -22,7 +22,7 @@ impl Target { .ok() } - pub(crate) fn newer_than(&self, other: &Target) -> Option<bool> { + pub(crate) fn newer_than(&self, other: &Self) -> Option<bool> { let self_updated = self.already_updated.get(); let other_updated = other.already_updated.get(); Some(match (self.modified_time(), other.modified_time()) { |