Skip to content

Commit

Permalink
Fix a type error that would not compile on Apple LLVM version 6.1.0 (…
Browse files Browse the repository at this point in the history
…clang-602.0.53) (based on LLVM 3.6.0svn)

Github-Pull: #8513
Rebased-From: 8194a6e525514d5cda85ac08273a6ffb6d5b6cac
  • Loading branch information
JeremyRubin authored and luke-jr committed Sep 21, 2016
1 parent 156e305 commit 4e5fc31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/httpserver.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ void InterruptHTTPServer();
void StopHTTPServer();

/** Handler for requests to a certain HTTP path */
typedef boost::function<void(HTTPRequest* req, const std::string &)> HTTPRequestHandler;
typedef boost::function<bool(HTTPRequest* req, const std::string &)> HTTPRequestHandler;
/** Register handler for prefix.
* If multiple handlers match a prefix, the first-registered one will
* be invoked.
Expand Down

0 comments on commit 4e5fc31

Please sign in to comment.