From 37a9813482159e5079b19758ba0d12c0b4146e62 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Mon, 26 Jan 2015 13:26:21 +0100 Subject: [PATCH] replace boost::array by std::array --- Server/Connection.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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; };