forked from boostorg/beast
committed by
Vinnie Falco
parent
6eb55b21da
commit
e681f9d212
@@ -4,6 +4,7 @@ Version 267:
|
|||||||
* Fix signed/unsigned mismatch in file_stdio::seek
|
* Fix signed/unsigned mismatch in file_stdio::seek
|
||||||
* basic_stream dtor cannot throw
|
* basic_stream dtor cannot throw
|
||||||
* cmake: check policy first
|
* cmake: check policy first
|
||||||
|
* Add default dtors to satisfy -Wnon-virtual-dtor
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@@ -193,6 +193,10 @@ public:
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
virtual ~suite() = default;
|
||||||
|
suite(suite const&) = delete;
|
||||||
|
suite& operator=(suite const&) = delete;
|
||||||
|
|
||||||
/** Invokes the test using the specified runner.
|
/** Invokes the test using the specified runner.
|
||||||
|
|
||||||
Data members are set up here instead of the constructor as a
|
Data members are set up here instead of the constructor as a
|
||||||
|
@@ -249,6 +249,10 @@ public:
|
|||||||
/// Move Constructor
|
/// Move Constructor
|
||||||
async_base(async_base&& other) = default;
|
async_base(async_base&& other) = default;
|
||||||
|
|
||||||
|
virtual ~async_base() = default;
|
||||||
|
async_base(async_base const&) = delete;
|
||||||
|
async_base& operator=(async_base const&) = delete;
|
||||||
|
|
||||||
/** The type of allocator associated with this object.
|
/** The type of allocator associated with this object.
|
||||||
|
|
||||||
If a class derived from @ref async_base is a completion
|
If a class derived from @ref async_base is a completion
|
||||||
|
@@ -30,7 +30,7 @@ namespace http {
|
|||||||
|
|
||||||
namespace detail {
|
namespace detail {
|
||||||
|
|
||||||
class nodejs_message_category
|
class nodejs_message_category final
|
||||||
: public boost::system::error_category
|
: public boost::system::error_category
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
Reference in New Issue
Block a user