Fix Utilities Namespaces and includes

This commit is contained in:
2020-03-07 19:40:48 +01:00
parent a175bf5af9
commit 71fac8bed0
13 changed files with 61 additions and 60 deletions
+2 -2
View File
@@ -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
{