Skip to content

Commit

Permalink
try to fix 32-bit (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnj authored Oct 26, 2017
1 parent cb4fcb3 commit d6d42bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/precompile.jl
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function _precompile_()
@assert precompile(HTTP.initTLS!, (Type{HTTP.https}, String, HTTP.RequestOptions, Base.TCPSocket,))
@assert precompile(HTTP.stalebytes!, (MbedTLS.SSLContext,))
@assert precompile(HTTP.sniff, (Base.IOStream,))
@assert precompile(HTTP.request, (HTTP.Client, HTTP.Request, HTTP.RequestOptions, Bool, Array{HTTP.Response, 1}, Int64, Bool,))
@assert precompile(HTTP.request, (HTTP.Client, HTTP.Request, HTTP.RequestOptions, Bool, Array{HTTP.Response, 1}, Int, Bool,))
@assert precompile(HTTP.read, (HTTP.Multipart{Base.IOStream}, Int64,))
@assert precompile(HTTP.isjson, (Array{UInt8, 1},))
@assert precompile(HTTP.FIFOBuffers.close, (HTTP.FIFOBuffers.FIFOBuffer,))
Expand Down Expand Up @@ -154,7 +154,7 @@ function _precompile_()
@assert precompile(HTTP.Request, (HTTP.Method, HTTP.URI, Dict{String, String}, HTTP.FIFOBuffer))
@assert precompile(HTTP.request, (HTTP.Request,))
@assert precompile(HTTP.request, (HTTP.Client, HTTP.Request))
@assert precompile(HTTP.request, (HTTP.Client, HTTP.Request, HTTP.RequestOptions, Bool, Vector{HTTP.Response}, Int64, Bool))
@assert precompile(HTTP.request, (HTTP.Client, HTTP.Request, HTTP.RequestOptions, Bool, Vector{HTTP.Response}, Int, Bool))
@static if VERSION < v"0.7-DEV"
@assert precompile(HTTP.Client, (Base.AbstractIOBuffer{Array{UInt8, 1}}, HTTP.RequestOptions,))
@assert precompile(HTTP.URIs.printuri, (Base.AbstractIOBuffer{Array{UInt8, 1}}, String, String, String, String, String, String, String,))
Expand Down

0 comments on commit d6d42bc

Please sign in to comment.