Skip to content

Commit

Permalink
Using Base.sort in order to avoid ambiguities
Browse files Browse the repository at this point in the history
  • Loading branch information
casabre committed Nov 11, 2020
1 parent 76ebc54 commit aa3392d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/snoop_bot.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function _snoop_analysis_bot(snooping_code, package_name, precompile_folder, sub
end
""")
else # if any precompilation script is generated
onlypackage = Dict( packageSym => sort(pc[packageSym]) )
onlypackage = Dict( packageSym => Base.sort(pc[packageSym]) )
SnoopCompile.write($precompile_folder, onlypackage)
@info "precompile signatures were written to $($precompile_folder)"
end
Expand Down

0 comments on commit aa3392d

Please sign in to comment.