mirror of
https://github.com/boostorg/beast.git
synced 2025-07-31 21:34:46 +02:00
@@ -1,6 +1,7 @@
|
|||||||
1.0.0-b29
|
1.0.0-b29
|
||||||
|
|
||||||
* Fix race in writes during WebSocket reads
|
* 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<
|
using list_t = boost::intrusive::make_list<element,
|
||||||
element, boost::intrusive::constant_time_size<false>>::type;
|
boost::intrusive::constant_time_size<false>>::type;
|
||||||
|
|
||||||
using set_t = typename boost::intrusive::make_multiset<
|
using set_t = boost::intrusive::make_multiset<element,
|
||||||
element, boost::intrusive::constant_time_size<true>,
|
boost::intrusive::constant_time_size<true>,
|
||||||
boost::intrusive::compare<less>>::type;
|
boost::intrusive::compare<less>>::type;
|
||||||
|
|
||||||
// data
|
// data
|
||||||
|
Reference in New Issue
Block a user