mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
fmt: remove redundant parenthesis in the complex infix expr (#17873)
This commit is contained in:
@ -49,7 +49,7 @@ pub fn (mut q Quadtree) insert(p AABB) {
|
||||
|
||||
q.particles << p
|
||||
|
||||
if (q.particles.len > q.capacity) && (q.level < q.depth) {
|
||||
if q.particles.len > q.capacity && q.level < q.depth {
|
||||
if q.nodes.len == 0 {
|
||||
q.split()
|
||||
}
|
||||
|
Reference in New Issue
Block a user