http: Change boost::scoped_ptr to std::unique_ptr in HTTPRequest

No need for boost here.
This commit is contained in:
Wladimir J. van der Laan 2016-05-04 15:55:23 +02:00
parent f97b410fdd
commit 37b21372a0

View file

@ -36,7 +36,6 @@
#include <boost/algorithm/string/case_conv.hpp> // for to_lower()
#include <boost/foreach.hpp>
#include <boost/scoped_ptr.hpp>
/** Maximum size of http request (request line + headers) */
static const size_t MAX_HEADERS_SIZE = 8192;
@ -54,7 +53,7 @@ public:
func(req.get(), path);
}
boost::scoped_ptr<HTTPRequest> req;
std::unique_ptr<HTTPRequest> req;
private:
std::string path;