mirror of
https://github.com/urbit/ares.git
synced 2024-11-26 09:57:56 +03:00
2stackz: lint
This commit is contained in:
parent
a98524bfd7
commit
f8615b5a4e
@ -165,12 +165,10 @@ impl NockStack {
|
||||
} else {
|
||||
ptr_u64 >= self.alloc_pointer && ptr_u64 < prev
|
||||
}
|
||||
} else if prev.is_null() {
|
||||
ptr_u64 >= self.start && ptr_u64 < self.alloc_pointer
|
||||
} else {
|
||||
if prev.is_null() {
|
||||
ptr_u64 >= self.start && ptr_u64 < self.alloc_pointer
|
||||
} else {
|
||||
ptr_u64 >= prev && ptr_u64 < self.alloc_pointer
|
||||
}
|
||||
ptr_u64 >= prev && ptr_u64 < self.alloc_pointer
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user