Skip to content

Commit 5d4b35f

Browse files
authored
remove warning; fix version number (#565)
1 parent c392ea8 commit 5d4b35f

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
@@ -2,7 +2,7 @@ name = "Polynomials"
22
uuid = "f27b6e38-b328-58d1-80ce-0feddd5e7a45"
33
license = "MIT"
44
author = "JuliaMath"
5-
version = "4.0.8"
5+
version = "4.0.7"
66

77
[deps]
88
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

src/polynomial-container-types/mutable-dense-laurent-polynomial.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ struct MutableDenseLaurentPolynomial{B,T,X} <: AbstractLaurentUnivariatePolynomi
1616
end
1717
function MutableDenseLaurentPolynomial{B,T,X}(::Val{true}, cs::AbstractVector, order::Int=0) where {B,T,X}
1818
if Base.has_offset_axes(cs)
19-
@warn "Using the axis offset of the coefficient vector"
19+
# Using the axis offset of the coefficient vector
2020
cs, order = cs.parent, firstindex(cs)
2121
end
2222

0 commit comments

Comments
 (0)