Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Tricks"
uuid = "410a4b4d-49e4-4fbc-ab6d-cb71b17b3775"
authors = ["Frames White"]
version = "0.1.11"
version = "0.1.12"

[compat]
julia = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion src/Tricks.jl
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ function _method_table_all_edges_all_methods(f, T, world = Base.get_world_counte
mt = f.name.mt
mt_edges = Core.Compiler.vect(mt, Tuple{f,Vararg{Any}})
else
mt = Core.GlobalMethods
mt = isdefined(Core, :methodtable) ? Core.methodtable : Core.GlobalMethods # was called this in 1.12 pre 1.12-rc2
mt_edges = Core.Compiler.vect(Tuple{f, Vararg{Any}}, mt)
end

Expand Down
Loading