mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 12:57:31 +02:00
@ -1,3 +1,7 @@
|
||||
* Fix c++20 deprecation warning in span_body
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
Version 291:
|
||||
|
||||
* Test websocket with use_awaitable
|
||||
|
@ -36,7 +36,9 @@ template<class T>
|
||||
struct span_body
|
||||
{
|
||||
private:
|
||||
static_assert(std::is_pod<T>::value,
|
||||
static_assert(
|
||||
std::is_trivial<T>::value &&
|
||||
std::is_standard_layout<T>::value,
|
||||
"POD requirements not met");
|
||||
|
||||
public:
|
||||
|
Reference in New Issue
Block a user