You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 4, 2019. It is now read-only.
_
_ _ _(_)_ | A fresh approach to technical computing
(_) | (_) (_) | Documentation: http://docs.julialang.org
_ _ _| |_ __ _ | Type "?help" for help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 0.4.0-dev+7032 (2015-08-27 04:01 UTC)
_/ |\__'_|_|_|\__'_| | Commit 5d3ccd6 (0 days old master)
|__/ | x86_64-linux-gnu
julia> using HttpServer
WARNING: New definition
write(#T<:Base.IO, HttpCommon.Response) at /home/sachs/.julia/v0.4/HttpServer/src/HttpServer.jl:178
is ambiguous with:
write(#T<:Base.AbstractPipe, Any...) at stream.jl:547.
To fix, define
write(#T<:Base.AbstractPipe, HttpCommon.Response)
before the new definition.
WARNING: New definition
write(#T<:Base.IO, HttpCommon.Response) at /home/sachs/.julia/v0.4/HttpServer/src/HttpServer.jl:178
is ambiguous with:
write(#T<:Base.DevNullStream, Any...) at process.jl:95.
To fix, define
write(#T<:Base.DevNullStream, HttpCommon.Response)
before the new definition.
that function (function write{T<:IO}(io::T, response::Response)) doesn't need to specialize on the type of io object, so it should be written more simply as function write(io::IO, response::Response).
This warning happened after JuliaLang/julia#12739
Cc: @vtjnash
The text was updated successfully, but these errors were encountered: