Skip to content

Commit

Permalink
restore use of ismissing in in
Browse files Browse the repository at this point in the history
1e0ce67 unnecessarily changed this.
  • Loading branch information
JeffBezanson committed Jul 7, 2018
1 parent 069314b commit f94ce50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/operators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -945,7 +945,7 @@ function in(x, itr)
anymissing = false
for y in itr
v = (y == x)
if v === missing
if ismissing(v)
anymissing = true
elseif v
return true
Expand Down

0 comments on commit f94ce50

Please sign in to comment.