Skip to content

Commit

Permalink
Merge pull request #100 from timholy/fbot/deps
Browse files Browse the repository at this point in the history
Fix deprecations
timholy authored Sep 3, 2018
2 parents 44eee47 + 5bc283a commit 87fac0e
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ProfileView.jl
Original file line number Diff line number Diff line change
@@ -347,7 +347,7 @@ end
function checkcontains(root, ip2so, so2ip, lidict)
flag = contains(root, ip2so)
if !all(flag)
missing = find(!flag)
missing = findall(!flag)
println("missing ips:")
for i in missing
@show i
2 changes: 1 addition & 1 deletion src/tree.jl
Original file line number Diff line number Diff line change
@@ -102,6 +102,6 @@ function showedges(io::IO, parent::Node, printfunc = identity)
end
end
end
showedges(parent::Node) = showedges(STDOUT, parent)
showedges(parent::Node) = showedges(stdout, parent)

end

0 comments on commit 87fac0e

Please sign in to comment.