Skip to content

Commit

Permalink
Replace implicit imports with explicit ones
Browse files Browse the repository at this point in the history
Detected by ExplicitImports.jl.
  • Loading branch information
JamesWrigley committed May 15, 2024
1 parent e4e3481 commit df7adfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ZMQ.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Support for ZeroMQ, a network and interprocess communication library

module ZMQ
using ZeroMQ_jll
import ZeroMQ_jll: libzmq

using Base.Libc: EAGAIN
using FileWatching: UV_READABLE, uv_pollcb, FDWatcher
Expand Down Expand Up @@ -43,7 +43,7 @@ function __init__()
end
end

using PrecompileTools
import PrecompileTools: @compile_workload
@compile_workload begin
__init__()
# The ZMQ scoping below isn't necessary, but it makes it easier to copy/paste
Expand Down

0 comments on commit df7adfc

Please sign in to comment.