From b195d30f5f82dcdd030d8cad0b9e599a6bbcb254 Mon Sep 17 00:00:00 2001 From: teresy Date: Thu, 18 Oct 2018 13:03:19 -0400 Subject: [PATCH] refactor: simplify map call --- src/lib/util.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/util.jl b/src/lib/util.jl index ace4ed58..6aeebd11 100644 --- a/src/lib/util.jl +++ b/src/lib/util.jl @@ -90,7 +90,7 @@ macro unimplemented(expr) args = expr.args[2:end] sig = string(expr) - vars = map(x->getvarname(x), args) + vars = map(getvarname, args) typs = Expr(:vect, map(x -> :(typeof($x)), vars)...,)