Skip to content

Commit 9d80e2f

Browse files
committed
compat with julia 1.0
1 parent fc55385 commit 9d80e2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/goto.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ methodgotoitems(ml) = map(GotoItem, aggregatemethods(ml))
306306
function aggregatemethods(ml)
307307
ms = collect(ml)
308308
sort!(ms, by = m -> m.nargs, rev = true)
309-
unique!(m -> (m.file, m.line), ms)
309+
unique(m -> (m.file, m.line), ms)
310310
end
311311

312312
function GotoItem(m::Method)

0 commit comments

Comments
 (0)