Fix warning.

This commit is contained in:
Relintai 2021-08-22 23:01:39 +02:00
parent a77535d0e4
commit 83ea2c0587

View File

@ -18,7 +18,8 @@ HTTPSession *Request::get_or_create_session() {
}
const std::string &Request::get_cookie(const std::string &key) {
return "";
static std::string str;
return str;
}
void Request::add_cookie(const ::Cookie &cookie) {