Skip to content

Commit

Permalink
Merge pull request #50 from JuliaWeb/tk/call
Browse files Browse the repository at this point in the history
remove URIParser.call lines from precompile.jl
  • Loading branch information
quinnj authored Feb 2, 2017
2 parents d5f6eff + abebe00 commit 933fbcd
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/precompile.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,12 @@ function _precompile_()
ccall(:jl_generating_output, Cint, ()) == 1 || return nothing
precompile(URIParser.parse_url, (Compat.ASCIIString,))
precompile(URIParser.parse_authority, (Compat.ASCIIString, Bool,))
precompile(URIParser.call, (Array{Any, 1}, Type{URIParser.URI}, URIParser.URI,))
precompile(URIParser.escape_with, (Compat.ASCIIString, Compat.String,))
precompile(URIParser.call, (Type{URIParser.URI}, Compat.ASCIIString, Compat.ASCIIString, UInt16, Compat.ASCIIString, Compat.ASCIIString, Compat.ASCIIString, Compat.ASCIIString, Bool,))
precompile(URIParser.is_host_char, (Char,))
precompile(URIParser.is_url_char, (Char,))
precompile(URIParser.isnum, (Char,))
precompile(URIParser.is_mark, (Char,))
precompile(URIParser.is_userinfo_char, (Char,))
precompile(URIParser.escape, (Compat.ASCIIString,))
precompile(URIParser.call, (Type{URIParser.URI}, Compat.ASCIIString,))
precompile(URIParser.ishex, (Char,))
end

0 comments on commit 933fbcd

Please sign in to comment.