Skip to content

Commit

Permalink
Reverted use of uninitialised for compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
pablosanjose committed Dec 7, 2017
1 parent d6b58f4 commit 1a00c3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/broadcast.jl
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ end
end
newsize = tuple(newsize...)

exprs = Array{Expr}(uninitialized, newsize)
exprs = Array{Expr}(newsize)
more = prod(newsize) > 0
current_ind = ones(Int, length(newsize))

Expand Down

0 comments on commit 1a00c3f

Please sign in to comment.