From 20531b3916ad285e309feadc98ba15e07a770a36 Mon Sep 17 00:00:00 2001 From: JamesWrigley Date: Wed, 15 May 2024 15:30:12 +0200 Subject: [PATCH] Replace implicit imports with explicit ones Detected by ExplicitImports.jl. --- src/ZMQ.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ZMQ.jl b/src/ZMQ.jl index 48f9aae..aad7a99 100644 --- a/src/ZMQ.jl +++ b/src/ZMQ.jl @@ -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 @@ -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