Skip to content

Commit 9909fa4

Browse files
carundeanberris
authored andcommitted
fix build warnings with member initialization order in async_message.hpp
1 parent e653e47 commit 9909fa4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

boost/network/protocol/http/message/async_message.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,10 +145,10 @@ struct async_message {
145145
destination_;
146146
mutable boost::shared_future<std::uint16_t> status_;
147147
mutable boost::shared_future<headers_container_type> headers_;
148+
mutable boost::optional<headers_container_type> retrieved_headers_;
148149
mutable headers_container_type added_headers;
149150
mutable std::set<string_type> removed_headers;
150151
mutable boost::shared_future<string_type> body_;
151-
mutable boost::optional<headers_container_type> retrieved_headers_;
152152

153153
friend struct boost::network::http::impl::ready_wrapper<Tag>;
154154
};

0 commit comments

Comments
 (0)