Skip to content
This repository has been archived by the owner on Sep 4, 2019. It is now read-only.

Commit

Permalink
Merge pull request #28 from ivarne/patch-1
Browse files Browse the repository at this point in the history
Ptr{None} -> Ptr{Void}
  • Loading branch information
IainNZ committed Sep 29, 2014
2 parents d9e7071 + d058244 commit 4ac439c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/HttpParser.jl
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ Parser() = Parser(

# A composite type that is expecting C functions to be run as callbacks.
type ParserSettings
on_message_begin_cb::Ptr{None}
on_url_cb::Ptr{None}
on_status_complete_cb::Ptr{None}
on_header_field_cb::Ptr{None}
on_header_value_cb::Ptr{None}
on_headers_complete_cb::Ptr{None}
on_body_cb::Ptr{None}
on_message_complete_cb::Ptr{None}
on_message_begin_cb::Ptr{Void}
on_url_cb::Ptr{Void}
on_status_complete_cb::Ptr{Void}
on_header_field_cb::Ptr{Void}
on_header_value_cb::Ptr{Void}
on_headers_complete_cb::Ptr{Void}
on_body_cb::Ptr{Void}
on_message_complete_cb::Ptr{Void}
end

function show(io::IO,p::Parser)
Expand Down

0 comments on commit 4ac439c

Please sign in to comment.