From c97b946c338a967b90124030d44f27863de5ddb8 Mon Sep 17 00:00:00 2001 From: Jeff Bezanson Date: Fri, 24 Jul 2015 15:56:39 -0400 Subject: [PATCH] update `ccallable` for tuple type change --- base/c.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/c.jl b/base/c.jl index 6761dcadd14c7..61c1311711dae 100644 --- a/base/c.jl +++ b/base/c.jl @@ -113,7 +113,7 @@ macro ccallable(def) end return quote $(esc(def)) - ccallable($(esc(name)), $(Expr(:tuple, map(esc, at)...))) + ccallable($(esc(name)), $(Expr(:curly, :Tuple, map(esc, at)...))) end end end