aboutsummaryrefslogtreecommitdiffstats
path: root/http_connection.h
diff options
context:
space:
mode:
Diffstat (limited to 'http_connection.h')
-rw-r--r--http_connection.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/http_connection.h b/http_connection.h
index 7fd9a43..d5ee1c9 100644
--- a/http_connection.h
+++ b/http_connection.h
@@ -4,6 +4,7 @@
#include <atomic>
#include <boost/asio.hpp>
#include <boost/algorithm/string/predicate.hpp>
+#include <boost/array.hpp>
#include "parser.h"
#include "http_response.h"
@@ -118,7 +119,7 @@ namespace flask
tcp::socket socket_;
Handler* handler_;
- std::array<char, 8192> buffer_;
+ boost::array<char, 8192> buffer_;
HTTPParser<Connection> parser_;
response res;