We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a84dd4e commit 6d816d8Copy full SHA for 6d816d8
src/lazy.jl
@@ -5,12 +5,11 @@ end
5
6
for typ in [:Symbol, :Int]
7
@eval begin
8
- Base.@propagate_inbounds function Base.getproperty(c::LazyRow, nm::$typ)
+ @inline Base.@propagate_inbounds function Base.getproperty(c::LazyRow, nm::$typ)
9
return getproperty(getfield(c, 1), nm)[getfield(c, 2)]
10
end
11
- Base.@propagate_inbounds function Base.setproperty!(c::LazyRow, nm::$typ, val)
+ @inline Base.@propagate_inbounds function Base.setproperty!(c::LazyRow, nm::$typ, val)
12
getproperty(getfield(c, 1), nm)[getfield(c, 2)] = val
13
- return
14
15
16
0 commit comments