Skip to content

Commit 045a446

Browse files
author
Dean Michael Berris
committed
Fixing header include order in server.hpp inclusion of request.hpp and response.hpp -- this should be fixed some other way.
1 parent e31a643 commit 045a446

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

boost/network/protocol/http/request.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
#include <boost/network/protocol/http/message/wrappers/anchor.hpp>
2323
#include <boost/network/protocol/http/message/wrappers/protocol.hpp>
2424
#include <boost/network/protocol/http/message/wrappers/uri.hpp>
25+
#include <boost/network/protocol/http/message/wrappers/body.hpp>
26+
#include <boost/network/protocol/http/message/wrappers/version.hpp>
2527
#include <boost/network/message/directives.hpp>
2628
#include <boost/network/message/transformers.hpp>
2729

boost/network/protocol/http/server.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
#include <boost/shared_ptr.hpp>
1414
#include <boost/bind.hpp>
1515
#include <boost/asio/ip/tcp.hpp>
16-
#include <boost/network/protocol/http/request.hpp>
1716
#include <boost/network/protocol/http/response.hpp>
17+
#include <boost/network/protocol/http/request.hpp>
1818
#include <boost/network/protocol/http/connection.hpp>
1919
#include <boost/network/traits/string.hpp>
2020

0 commit comments

Comments
 (0)