mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 18:45:52 +00:00
Add missing includes and tidy up
This commit is contained in:
@@ -20,6 +20,8 @@
|
||||
#ifndef BEAST_ASIO_HANDSHAKE_HANDSHAKEDETECTLOGICSSL3_H_INCLUDED
|
||||
#define BEAST_ASIO_HANDSHAKE_HANDSHAKEDETECTLOGICSSL3_H_INCLUDED
|
||||
|
||||
#include <beast/ByteOrder.h>
|
||||
|
||||
namespace beast {
|
||||
namespace asio {
|
||||
|
||||
|
||||
@@ -27,6 +27,7 @@
|
||||
#include <beast/asio/shared_handler.h>
|
||||
|
||||
#include <boost/asio/detail/handler_cont_helpers.hpp>
|
||||
#include <boost/asio/streambuf.hpp>
|
||||
|
||||
namespace beast {
|
||||
namespace asio {
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace asio {
|
||||
Write operations are all simply passed through.
|
||||
*/
|
||||
template <class Stream>
|
||||
class PrefilledReadStream : public Uncopyable
|
||||
class PrefilledReadStream
|
||||
{
|
||||
protected:
|
||||
typedef boost::system::error_code error_code;
|
||||
@@ -47,6 +47,9 @@ protected:
|
||||
}
|
||||
|
||||
public:
|
||||
PrefilledReadStream (PrefilledReadStream const&) = delete;
|
||||
PrefilledReadStream& operator= (PrefilledReadStream const&) = delete;
|
||||
|
||||
typedef std::remove_reference_t <Stream> next_layer_type;
|
||||
typedef typename next_layer_type::lowest_layer_type lowest_layer_type;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user