Skip to content

Commit 7c49043

Browse files
nsajkogiordano
authored andcommitted
properly add == method
1 parent b50c88f commit 7c49043

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FixedSizeBitArray.jl

+1-1
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)