Skip to content

Commit

Permalink
tracing: fix bug in the pretty-printer
Browse files Browse the repository at this point in the history
  • Loading branch information
ulysses4ever committed Dec 11, 2023
1 parent c1f7e05 commit f75211a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,6 @@ end
# Print type stability check in a form of pseudo-method declaration
print_check(io, m::Method, @nospecialize(types)) = begin
print(io, "function $(m.name)(")
for t in types
print(io, "::$t")
end
print(io, join(map(t->"::$t", types), ", "))
println(io, ")")
end

0 comments on commit f75211a

Please sign in to comment.