Skip to content

Commit b06d563

Browse files
committed
Fix 1.10
1 parent 29a960c commit b06d563

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/FFTW.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ mutable struct FakeLazyLibrary{T}
3636
on_load_callback::T
3737
@atomic h::Ptr{Cvoid}
3838
end
39-
import Libdl: LazyLibrary, dlopen, dlsym
39+
import Libdl: LazyLibrary, dlopen
4040
function dlopen(lib::FakeLazyLibrary{T}) where T
4141
h = @atomic :monotonic lib.h
4242
h != C_NULL && return h

src/fft.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import Base: show, *, convert, unsafe_convert, size, strides, ndims, pointer
44
import LinearAlgebra: mul!
5+
import Libdl: dlopen, dlsym
56

67
"""
78
r2r(A, kind [, dims])

0 commit comments

Comments
 (0)