Remove unused variable from HttpRequest. Remove redundant noexcept.

This commit is contained in:
Fred Nicolson 2018-12-11 16:02:42 +00:00
parent 8ee8e264b9
commit 16bb072c12
3 changed files with 1 additions and 3 deletions

View File

@ -73,7 +73,6 @@ namespace fr
//State
bool header_ended;
int32_t last_parsed_character;
size_t content_length;
};

View File

@ -9,7 +9,6 @@ namespace fr
{
HttpRequest::HttpRequest()
: header_ended(false),
last_parsed_character(0),
content_length(0)
{

View File

@ -18,7 +18,7 @@ namespace fr
}
TcpSocket::~TcpSocket() noexcept
TcpSocket::~TcpSocket()
{
close_socket();
}