Appease Clippy-sama
This commit is contained in:
parent
6748395d9e
commit
f8aae49fce
|
@ -7,4 +7,4 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# 1st party
|
# 1st party
|
||||||
uplc = { path = '../uplc', version = "0.0.3" }
|
uplc = { path = '../uplc', version = "0.0.5" }
|
||||||
|
|
|
@ -67,7 +67,7 @@ impl WithTerm for NeedsTerm {
|
||||||
let next_unique = self.next_unique.get();
|
let next_unique = self.next_unique.get();
|
||||||
self.next_unique.set(next_unique + 1);
|
self.next_unique.set(next_unique + 1);
|
||||||
let unique = Unique::new(next_unique);
|
let unique = Unique::new(next_unique);
|
||||||
names.insert(name_str.to_string(), unique.clone());
|
names.insert(name_str.to_string(), unique);
|
||||||
Name {
|
Name {
|
||||||
text: name_str.to_string(),
|
text: name_str.to_string(),
|
||||||
unique,
|
unique,
|
||||||
|
@ -93,6 +93,7 @@ impl<T: WithTerm> WithTerm for LambdaBuilder<T> {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Builder {
|
impl Builder {
|
||||||
|
#[allow(clippy::new_ret_no_self)]
|
||||||
pub fn new(maj: usize, min: usize, patch: usize) -> NeedsTerm {
|
pub fn new(maj: usize, min: usize, patch: usize) -> NeedsTerm {
|
||||||
NeedsTerm {
|
NeedsTerm {
|
||||||
version: (maj, min, patch),
|
version: (maj, min, patch),
|
||||||
|
|
Loading…
Reference in New Issue