Fix Utilities Namespaces and includes
This commit is contained in:
@@ -32,7 +32,7 @@ void HttpConnection::HandleRead(const asio::error_code& ec, std::size_t length)
|
||||
if (!ec)
|
||||
{
|
||||
size_t dataLocation;
|
||||
Utilities::Tribool result;
|
||||
Tribool::Tribool result;
|
||||
Buffer::iterator dataIterator;
|
||||
|
||||
if (!m_dataIncomplete)
|
||||
@@ -51,7 +51,7 @@ void HttpConnection::HandleRead(const asio::error_code& ec, std::size_t length)
|
||||
if (result && length < m_request.headers.GetContentLength() + dataLocation)
|
||||
{
|
||||
m_dataIncomplete = true;
|
||||
result = Utilities::Tribool::Indeterminate;
|
||||
result = Tribool::Tribool::Indeterminate;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user