From 02ed7f199e6e4f0ca068841d4f5352479d1917f8 Mon Sep 17 00:00:00 2001 From: Pradeep Mudlapur Date: Sun, 20 Dec 2015 18:17:11 +0530 Subject: [PATCH] Support for precompilation with version check --- src/HTTPClient.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/HTTPClient.jl b/src/HTTPClient.jl index 41b7694..a7a8c8f 100644 --- a/src/HTTPClient.jl +++ b/src/HTTPClient.jl @@ -1,5 +1,7 @@ +isdefined(Base, :__precompile__) && __precompile__() + module HTTPClient include("HTTPC.jl") -end \ No newline at end of file +end