Remove unnecessary include

This commit is contained in:
Vinnie Falco
2017-12-29 09:26:29 -08:00
parent 5dcef24ea7
commit b6c3cb30ae
2 changed files with 5 additions and 6 deletions

View File

@@ -6,6 +6,7 @@ WebSocket:
* Control callback is invoked on the execution context * Control callback is invoked on the execution context
* Add stream_fwd.hpp * Add stream_fwd.hpp
* Remove unnecessary include
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------

View File

@@ -39,16 +39,10 @@
#include <limits> #include <limits>
#include <type_traits> #include <type_traits>
#include <boost/asio/io_context.hpp> // DEPRECATED
namespace boost { namespace boost {
namespace beast { namespace beast {
namespace websocket { namespace websocket {
namespace detail {
class frame_test;
}
/// The type of object holding HTTP Upgrade requests /// The type of object holding HTTP Upgrade requests
using request_type = http::request<http::empty_body>; using request_type = http::request<http::empty_body>;
@@ -72,6 +66,10 @@ enum class frame_type
pong pong
}; };
namespace detail {
class frame_test;
} // detail
//-------------------------------------------------------------------- //--------------------------------------------------------------------
/** Provides message-oriented functionality using WebSocket. /** Provides message-oriented functionality using WebSocket.