mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 21:07:26 +02:00
@ -1,5 +1,6 @@
|
||||
Version XXX:
|
||||
|
||||
* Fix unreachable code warning with MSVC.
|
||||
* Fix logic error in advance_server_flex.
|
||||
* Fix file open with append_existing flag on posix.
|
||||
* Websocket SSL `teardown` also tears down underlying TCP.
|
||||
|
@ -52,7 +52,7 @@ public:
|
||||
|
||||
#if defined(_MSC_VER) && ! defined(__clang__)
|
||||
# define BOOST_BEAST_UNREACHABLE() __assume(false)
|
||||
# define BOOST_BEAST_UNREACHABLE_RETURN(v) __assume(false)
|
||||
# define BOOST_BEAST_UNREACHABLE_RETURN(v) return v
|
||||
#else
|
||||
# define BOOST_BEAST_UNREACHABLE() __builtin_unreachable()
|
||||
# define BOOST_BEAST_UNREACHABLE_RETURN(v) \
|
||||
|
Reference in New Issue
Block a user