Adapt to firecgi API change, add asan target, new Makefile ar merge method

This commit is contained in:
flamingcow
2019-05-07 23:26:48 -07:00
parent 990e28a0ce
commit 3ef9cabbd5
6 changed files with 20 additions and 14 deletions

View File

@@ -2,8 +2,8 @@
namespace firesse {
Stream::Stream(std::unique_ptr<firecgi::Request> request)
: request_(std::move(request)) {}
Stream::Stream(firecgi::Request* request)
: request_(request) {}
bool Stream::WriteEvent(const std::string& data, uint64_t id, const std::string& type) {
if (id) {