Skip to content

Commit 5ae3c9e

Browse files
authored
Merge pull request #104 from jverzani/nowarning
quiet v06 warning
2 parents 8395ab7 + 64611ed commit 5ae3c9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Polynomials.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ dot_operators = quote
294294
@compat Base.:.*{T<:Number,S}(c::T, p::Poly{S}) = Poly(c * p.a, p.var)
295295
@compat Base.:.*{T<:Number,S}(p::Poly{S}, c::T) = Poly(p.a * c, p.var)
296296
end
297-
VERSION < v"0.6.0" && eval(dot_operators)
297+
VERSION < v"0.6.0-dev" && eval(dot_operators)
298298

299299

300300
# are any values NaN

0 commit comments

Comments
 (0)