Skip to content

Commit 4106519

Browse files
committed
Removing W32 check from source code after they are removed from build.
1 parent 33a5737 commit 4106519

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Inflate.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const Z_MEM_ERROR = -4
4545
const Z_BUF_ERROR = -5
4646
const Z_VERSION_ERROR = -6
4747

48-
@static if Base.VERSION > v"1.3-" && !(Sys.iswindows() && Sys.WORD_SIZE == 32)
48+
@static if Base.VERSION > v"1.3-"
4949
using Zlib_jll: libz
5050
else
5151
isfile(joinpath(dirname(@__FILE__),"..","deps","deps.jl")) ||

src/LibCrypto.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@static if Base.VERSION > v"1.3-" && !(Sys.iswindows() && Sys.WORD_SIZE == 32)
1+
@static if Base.VERSION > v"1.3-"
22
using OpenSSL_jll: libcrypto
33
else
44
isfile(joinpath(dirname(@__FILE__), "..", "deps", "deps.jl")) ||

0 commit comments

Comments
 (0)