Skip to content

Commit

Permalink
Merge pull request #465 from JuliaLang/jq/libdl
Browse files Browse the repository at this point in the history
Compat for Libdl moving to stdlib
  • Loading branch information
quinnj authored Jan 20, 2018
2 parents a84c596 + 4178bf3 commit 20e454d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Compat.jl
Original file line number Diff line number Diff line change
Expand Up @@ -770,6 +770,12 @@ else
import Dates
end

if VERSION < v"0.7.0-DEV.3382"
const Libdl = Base.Libdl
else
import Libdl
end

if VERSION < v"0.7.0-DEV.3216"
const AbstractDateTime = Compat.Dates.TimeType
else
Expand Down

0 comments on commit 20e454d

Please sign in to comment.