Skip to content

Commit 12d611f

Browse files
authored
Merge pull request #156 from jverzani/conj
fixes #155
2 parents c944ac7 + be8b3a5 commit 12d611f

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
@@ -244,7 +244,7 @@ norm(q::Poly, p::Real=2) = norm(coeffs(q), p)
244244
245245
Conjugate each coefficient of `p`.
246246
"""
247-
conj(p::Poly{T}) where {T<:Complex} = Poly(conj(coeffs(p)))
247+
conj(p::Poly) = Poly(conj(coeffs(p)))
248248

249249
# Define the no-op `transpose` explicitly to avoid future warnings in Julia
250250
transpose(p::Poly) = p

0 commit comments

Comments
 (0)