Skip to content

Commit 1619604

Browse files
committed
Added some missing headers.
1 parent d2d0c8a commit 1619604

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// http://www.boost.org/LICENSE_1_0.txt)
99

1010
#include <boost/network/protocol/http/client/connection/connection_delegate.hpp>
11+
#include <boost/scoped_ptr.hpp>
12+
#include <boost/asio/placeholders.hpp>
1113

1214
namespace boost { namespace network { namespace http { namespace impl {
1315

boost/network/protocol/http/client/connection/ssl_delegate.ipp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// http://www.boost.org/LICENSE_1_0.txt)
99

1010
#include <boost/network/protocol/http/client/connection/ssl_delegate.hpp>
11+
#include <boost/bind.hpp>
1112

1213
boost::network::http::impl::ssl_delegate::ssl_delegate(asio::io_service & service,
1314
optional<std::string> certificate_filename,

libs/network/test/http/client_get_streaming_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2011 Dean Michael Berris &lt;mikhailberis@gmail.com&gt;.
1+
// Copyright 2011 Dean Michael Berris &lt;mikhailberis@gmail.com&gt;.
22
// Distributed under the Boost Software License, Version 1.0.
33
// (See accompanying file LICENSE_1_0.txt or copy at
44
// http://www.boost.org/LICENSE_1_0.txt)
@@ -43,6 +43,6 @@ BOOST_AUTO_TEST_CASE_TEMPLATE(http_client_get_streaming_test, client, async_only
4343
BOOST_CHECK_EQUAL ( response.status_message(), std::string("OK") );
4444
dummy_body = body(response);
4545
}
46-
BOOST_CHECK ( dummy_body == typename client::string_type() );
46+
BOOST_CHECK ( dummy_body == typename client::string_type() );
4747
}
4848

0 commit comments

Comments
 (0)