Skip to content

Commit be8b3a5

Browse files
committed
fixes #155
1 parent c944ac7 commit be8b3a5

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)