Skip to content

Commit 9c37f94

Browse files
Remove pointless splat (doesnt affect allocs or speed)
1 parent 47fa3f4 commit 9c37f94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/topologies/halfedge.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ function adjsort(elems::AbstractVector{<:Connectivity})
237237
found = false
238238
vinds = last(adjs)
239239
for i in vinds
240-
not_i = (filter(!=(i), vinds)...,)
240+
not_i = filter(!=(i), vinds)
241241
for j in reverse(eachindex(list))
242242
# equivalent to `length(vinds ∩ list[j]) > 1` but more efficient (no allocs(?))
243243
any(==(i), list[j]) || continue

0 commit comments

Comments
 (0)