Skip to content

Commit b9d7579

Browse files
committed
Revert "Revert "Restore type parameter for elementwise ops""
This reverts commit e6f5d89. ref #17798 and #17389 and #17929
1 parent 4160a8a commit b9d7579

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/arraymath.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function _elementwise(op, ::Type{Any}, A::AbstractArray, B::AbstractArray)
5353
promote_shape(A, B) # check size compatibility
5454
return broadcast(op, A, B)
5555
end
56-
function _elementwise(op, T::Type, A::AbstractArray, B::AbstractArray)
56+
function _elementwise{T}(op, ::Type{T}, A::AbstractArray, B::AbstractArray)
5757
F = similar(A, T, promote_shape(A, B))
5858
for (iF, iA, iB) in zip(eachindex(F), eachindex(A), eachindex(B))
5959
@inbounds F[iF] = op(A[iA], B[iB])

0 commit comments

Comments
 (0)