Skip to content

Commit c2db992

Browse files
authored
properly add == method
1 parent 4248388 commit c2db992

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FixedSizeBitArray.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ function Base.fill!(B::FixedSizeBitArray, x)
7272
return B
7373
end
7474

75-
function (==)(A::FixedSizeBitArray, B::FixedSizeBitArray)
75+
function Base.:(==)(A::FixedSizeBitArray, B::FixedSizeBitArray)
7676
size(A) != size(B) && return false
7777
return A.chunks == B.chunks
7878
end

0 commit comments

Comments
 (0)