Skip to content

Commit 65cc52d

Browse files
Update src/small_array.jl
Co-authored-by: Bowen S. Zhu <[email protected]>
1 parent 4547192 commit 65cc52d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/small_array.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function Base.push!(x::Backing, v)
6060
x[x.len] = v
6161
end
6262

63-
function Base.pop!(x::Backing{T}, v) where {T}
63+
function Base.pop!(x::Backing{T}) where {T}
6464
x.len > 0 || throw(ArgumentError("Array is empty"))
6565
v = x[x.len]
6666
x[x.len] = defaultval(T)

0 commit comments

Comments
 (0)