mirror of
https://github.com/boostorg/beast.git
synced 2025-07-29 20:37:31 +02:00
@ -1,6 +1,7 @@
|
||||
1.0.0-b29
|
||||
|
||||
* Fix race in writes during WebSocket reads
|
||||
* Fix compilation error in non-template class
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
|
@ -94,11 +94,11 @@ protected:
|
||||
}
|
||||
};
|
||||
|
||||
using list_t = typename boost::intrusive::make_list<
|
||||
element, boost::intrusive::constant_time_size<false>>::type;
|
||||
using list_t = boost::intrusive::make_list<element,
|
||||
boost::intrusive::constant_time_size<false>>::type;
|
||||
|
||||
using set_t = typename boost::intrusive::make_multiset<
|
||||
element, boost::intrusive::constant_time_size<true>,
|
||||
using set_t = boost::intrusive::make_multiset<element,
|
||||
boost::intrusive::constant_time_size<true>,
|
||||
boost::intrusive::compare<less>>::type;
|
||||
|
||||
// data
|
||||
|
Reference in New Issue
Block a user