Skip to content

Commit d5da04a

Browse files
committed
fix #117
1 parent 34acd3b commit d5da04a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/abstractgbarray.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -968,7 +968,7 @@ function Base.setindex!(
968968
u::AbstractGBVector, x, I::Union{Vector, UnitRange, StepRange, Colon}, ::Colon;
969969
mask = nothing, accum = nothing, desc = nothing
970970
)
971-
Base.subassign!(u, x, I; mask, accum, desc)
971+
subassign!(u, x, I; mask, accum, desc)
972972
end
973973
function Base.setindex!(
974974
u::AbstractGBVector, x, I;
@@ -1066,4 +1066,4 @@ function Base.:(==)(A::GBArrayOrTranspose, B::GBArrayOrTranspose)
10661066
nnz(C) == nnz(A) || return false
10671067
nnz(C) == 0 && return true
10681068
return reduce(, C, dims=:, init=true)
1069-
end
1069+
end

0 commit comments

Comments
 (0)