Skip to content

Commit 98328f3

Browse files
deanberrisjellevdd
authored andcommitted
Fix order of members
1 parent 63609d2 commit 98328f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

boost/network/protocol/http/server/options.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ struct server_options {
112112
boost::shared_ptr<utils::thread_pool> thread_pool() const { return thread_pool_; }
113113
boost::shared_ptr<boost::asio::ssl::context> context() const { return context_; }
114114
private:
115-
boost::shared_ptr<boost::asio::ssl::context> context_;
116115
boost::shared_ptr<boost::asio::io_service> io_service_;
117116
Handler &handler_;
118117
string_type address_;
@@ -127,6 +126,7 @@ struct server_options {
127126
boost::optional<boost::asio::socket_base::receive_low_watermark> receive_low_watermark_;
128127
boost::optional<boost::asio::socket_base::send_low_watermark> send_low_watermark_;
129128
boost::shared_ptr<utils::thread_pool> thread_pool_;
129+
boost::shared_ptr<boost::asio::ssl::context> context_;
130130
};
131131

132132
template <class Tag, class Handler>

0 commit comments

Comments
 (0)