Skip to content

Commit

Permalink
Update src/vector_of_array.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas authored Dec 11, 2023
1 parent 59f4b86 commit 0936086
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vector_of_array.jl
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ end
@inline Base.first(VA::AbstractVectorOfArray) = first(VA.u)
@inline Base.last(VA::AbstractVectorOfArray) = last(VA.u)
function Base.firstindex(VA::AbstractVectorOfArray)
Base.depwarn("Linear indexing of `AbstractVectorOfArray` is deprecated", :firstindex)
Base.depwarn(Linear indexing of `AbstractVectorOfArray` is deprecated. Change `A[i]` to `A.u[i]` ",, :firstindex)
return firstindex(VA.u)
end
Expand Down

0 comments on commit 0936086

Please sign in to comment.