use default constructor in util lib to fix clang-5 compilation error
This commit is contained in:
parent
eff4ee4521
commit
50bbbc044d
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ Req HttpServer::getReq(int connection) {
|
||||||
size_t rcvd = 0;
|
size_t rcvd = 0;
|
||||||
int64_t curRcvd = 0;
|
int64_t curRcvd = 0;
|
||||||
HeaderState state = NONE;
|
HeaderState state = NONE;
|
||||||
Req ret{"", "", "", "", {}};
|
Req ret;
|
||||||
char *tmp = 0;
|
char *tmp = 0;
|
||||||
char *tmp2 = 0;
|
char *tmp2 = 0;
|
||||||
char* brk = 0;
|
char* brk = 0;
|
||||||
|
|
Loading…
Reference in a new issue