Skip to content

Commit a35f16e

Browse files
povilasbdeanberris
authored andcommitted
Refactored code.
1 parent 11a1a2e commit a35f16e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

boost/network/protocol/http/client/connection/async_protocol_handler.hpp

+6
Original file line numberDiff line numberDiff line change
@@ -49,20 +49,26 @@ struct http_async_protocol_handler {
4949
boost::shared_future<string_type> source_future(
5050
source_promise.get_future());
5151
source(response_, source_future);
52+
5253
boost::shared_future<string_type> destination_future(
5354
destination_promise.get_future());
5455
destination(response_, destination_future);
56+
5557
boost::shared_future<typename headers_container<Tag>::type> headers_future(
5658
headers_promise.get_future());
5759
headers(response_, headers_future);
60+
5861
boost::shared_future<string_type> body_future(body_promise.get_future());
5962
body(response_, body_future);
63+
6064
boost::shared_future<string_type> version_future(
6165
version_promise.get_future());
6266
version(response_, version_future);
67+
6368
boost::shared_future<boost::uint16_t> status_future(
6469
status_promise.get_future());
6570
status(response_, status_future);
71+
6672
boost::shared_future<string_type> status_message_future(
6773
status_message_promise.get_future());
6874
status_message(response_, status_message_future);

0 commit comments

Comments
 (0)