Remove unused variable from HttpRequest. Remove redundant noexcept.
This commit is contained in:
parent
8ee8e264b9
commit
16bb072c12
@ -73,7 +73,6 @@ namespace fr
|
||||
|
||||
//State
|
||||
bool header_ended;
|
||||
int32_t last_parsed_character;
|
||||
size_t content_length;
|
||||
|
||||
};
|
||||
|
||||
@ -9,7 +9,6 @@ namespace fr
|
||||
{
|
||||
HttpRequest::HttpRequest()
|
||||
: header_ended(false),
|
||||
last_parsed_character(0),
|
||||
content_length(0)
|
||||
{
|
||||
|
||||
|
||||
@ -18,7 +18,7 @@ namespace fr
|
||||
|
||||
}
|
||||
|
||||
TcpSocket::~TcpSocket() noexcept
|
||||
TcpSocket::~TcpSocket()
|
||||
{
|
||||
close_socket();
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user