mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 21:07:26 +02:00
@ -1,3 +1,7 @@
|
||||
* Fix assert in websocket
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
Version 292:
|
||||
|
||||
* Fix compile errors on Visual Studio with /std:c++latest
|
||||
|
@ -108,8 +108,7 @@ public:
|
||||
net::post(std::move(*this));
|
||||
BOOST_ASSERT(impl.rd_block.is_locked(this));
|
||||
|
||||
// VFALCO Is this check correct here?
|
||||
BOOST_ASSERT(! ec && impl.check_stop_now(ec));
|
||||
BOOST_ASSERT(!ec);
|
||||
if(impl.check_stop_now(ec))
|
||||
{
|
||||
BOOST_ASSERT(ec == net::error::operation_aborted);
|
||||
|
Reference in New Issue
Block a user