Skip to content

Commit 08345ab

Browse files
committedDec 17, 2019
Replace erroneous inbounds function annotation with inline
See #33886 (comment)
1 parent 630a551 commit 08345ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎base/array.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ false
177177
isbitsunion(u::Union) = allocatedinline(u)
178178
isbitsunion(x) = false
179179

180-
@inbounds function _unsetindex!(A::Array{T}, i::Int) where {T}
180+
@inline function _unsetindex!(A::Array{T}, i::Int) where {T}
181181
@boundscheck checkbounds(A, i)
182182
t = @_gc_preserve_begin A
183183
p = Ptr{Ptr{Cvoid}}(pointer(A, i))

0 commit comments

Comments
 (0)