From 0448d77340eed54bbf1df9fb662d19a98483c80e Mon Sep 17 00:00:00 2001 From: pdeffebach Date: Tue, 31 Mar 2020 13:21:21 -0400 Subject: [PATCH] no more `@inline` --- src/Missings.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Missings.jl b/src/Missings.jl index 11628c2..1262947 100644 --- a/src/Missings.jl +++ b/src/Missings.jl @@ -258,7 +258,7 @@ struct SkipMissings{V, T} others::T end -Base.@propagate_inbounds @inline function _anymissingindex(others::Tuple{Vararg{AbstractArray}}, i) +Base.@propagate_inbounds function _anymissingindex(others::Tuple{Vararg{AbstractArray}}, i) for oth in others oth[i] === missing && return true end