Skip to content

Commit 713dc7e

Browse files
committed
Revert to ===
1 parent 1b0715b commit 713dc7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vector_of_array.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Base.@propagate_inbounds function Base.getindex(A::AbstractDiffEqArray{T, N},sym
7171
i = sym
7272
end
7373

74-
if i == nothing
74+
if i === nothing
7575
if issymbollike(sym) && A.indepsym !== nothing && Symbol(sym) == A.indepsym
7676
A.t
7777
else
@@ -88,7 +88,7 @@ Base.@propagate_inbounds function Base.getindex(A::AbstractDiffEqArray{T, N},sym
8888
i = sym
8989
end
9090

91-
if i == nothing
91+
if i === nothing
9292
if issymbollike(sym) && A.indepsym !== nothing && Symbol(sym) == A.indepsym
9393
A.t[args...]
9494
else

0 commit comments

Comments
 (0)