Skip to content

Commit

Permalink
Fix deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
femtocleaner[bot] committed Sep 3, 2018
1 parent 44eee47 commit 5bc283a
Show file tree
Hide file tree
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
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/tree.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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 5bc283a

Please sign in to comment.