From c51e4add534931f2b89bb1b8fdfe9a9fa159a7c1 Mon Sep 17 00:00:00 2001 From: Jeff Fessler Date: Sun, 11 Jul 2021 21:49:19 -0400 Subject: [PATCH] [no ci] --- archive/src/ndgrid-repeat.jl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/archive/src/ndgrid-repeat.jl b/archive/src/ndgrid-repeat.jl index 2c886d0..7817a5a 100644 --- a/archive/src/ndgrid-repeat.jl +++ b/archive/src/ndgrid-repeat.jl @@ -50,8 +50,7 @@ Base.eltype(r::_Repeat) = eltype(r.args[1]) const Repeat{T,N} = ApplyArray{T, N, typeof(ndgrid_repeat)} # Base.IndexStyle(Repeat) = IndexCartesian() # default -#@inline # todo -Base.@propagate_inbounds function Base.getindex( +@inline Base.@propagate_inbounds function Base.getindex( r::Repeat{T,N}, i::Vararg{Int,N}, ) where {T,N}