Skip to content

Commit 8bebd66

Browse files
committed
Adding missing Boost.ASIO include.
1 parent a44b5b5 commit 8bebd66

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Release/include/cpprest/x509_cert_utilities.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
#include <vector>
3131
#include <string>
3232

33+
#include <boost/asio/ssl.hpp>
34+
3335
namespace web { namespace http { namespace client { namespace details {
3436

3537
/// <summary>

Release/src/http/client/http_linux.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ namespace web { namespace http
737737
}
738738
}
739739

740-
void handle_status_line(const boost::system::error_code& ec, const std::shared_ptr<linux_client_request_context> &ctx)
740+
void handle_status_line(const boost::system::error_code& ec, std::shared_ptr<linux_client_request_context> &ctx)
741741
{
742742
if (!ec)
743743
{

0 commit comments

Comments
 (0)