mirror of
https://github.com/boostorg/beast.git
synced 2025-07-31 13:27:33 +02:00
@ -1,3 +1,7 @@
|
|||||||
|
* Fix c++20 deprecation warning in span_body
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
Version 291:
|
Version 291:
|
||||||
|
|
||||||
* Test websocket with use_awaitable
|
* Test websocket with use_awaitable
|
||||||
|
@ -36,7 +36,9 @@ template<class T>
|
|||||||
struct span_body
|
struct span_body
|
||||||
{
|
{
|
||||||
private:
|
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");
|
"POD requirements not met");
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
Reference in New Issue
Block a user