Skip to content

Commit 8b59004

Browse files
committed
Fix #129
1 parent 02c68c6 commit 8b59004

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1010
MutableArithmetics = "d8a4904e-b15c-11e9-3269-09a3773c0cb0"
1111

1212
[compat]
13-
DataStructures = "0.17"
13+
DataStructures = "0.17.7"
1414
MutableArithmetics = "0.2"
1515
julia = "1"
1616

src/operators.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function polynomial_merge!(
105105
end
106106
while buffer !== nothing && !isempty(buffer) && j <= n2
107107
@assert i == k
108-
t = DataStructures.front(buffer)
108+
t = first(buffer)
109109
comp = compare_monomials(t, j)
110110
if comp >= 0
111111
if comp > 0

0 commit comments

Comments
 (0)