revert previous commit that replace boost::array by std::array. not compatible with clang-3.5/boost1.54

This commit is contained in:
Dennis Luxen 2015-01-26 17:37:37 +01:00
parent dd6dd63798
commit ad4fb5afe3

View File

@ -32,6 +32,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "Http/Reply.h"
#include "Http/Request.h"
#include <boost/array.hpp>
#include <boost/asio.hpp>
#include <boost/config.hpp>
#include <boost/version.hpp>
@ -81,7 +82,7 @@ class Connection : public std::enable_shared_from_this<Connection>
boost::asio::io_service::strand strand;
boost::asio::ip::tcp::socket TCP_socket;
RequestHandler &request_handler;
std::array<char, 8192> incoming_data_buffer;
boost::array<char, 8192> incoming_data_buffer;
Request request;
Reply reply;
};