Skip to content

Commit

Permalink
remove let from @setup_workload
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferC authored May 8, 2023
1 parent 302eeae commit c9e32ab
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/workloads.jl
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,8 @@ macro setup_workload(ex::Expr)
:((ccall(:jl_generating_output, Cint, ()) == 1 && $PrecompileTools.workload_enabled(@__MODULE__)))
end
return esc(quote
let
if $iscompiling || $PrecompileTools.verbose[]
$ex
end
if $iscompiling || $PrecompileTools.verbose[]
$ex
end
end)
end

0 comments on commit c9e32ab

Please sign in to comment.