diff --git a/Server/Connection.h b/Server/Connection.h index 024501055..da0745450 100644 --- a/Server/Connection.h +++ b/Server/Connection.h @@ -32,7 +32,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "Http/Reply.h" #include "Http/Request.h" -#include #include #include #include @@ -83,7 +82,7 @@ class Connection : public std::enable_shared_from_this boost::asio::io_service::strand strand; boost::asio::ip::tcp::socket TCP_socket; RequestHandler &request_handler; - boost::array incoming_data_buffer; + std::array incoming_data_buffer; Request request; Reply reply; };