mirror of
https://github.com/boostorg/beast.git
synced 2025-08-02 06:15:24 +02:00
Add missing rebind to handler_alloc
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
1.0.0-b14
|
||||||
|
|
||||||
|
* Add missing rebind to handler_alloc
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
1.0.0-b13
|
1.0.0-b13
|
||||||
|
|
||||||
* dstream improvements
|
* dstream improvements
|
||||||
|
@@ -55,6 +55,12 @@ public:
|
|||||||
using value_type = T;
|
using value_type = T;
|
||||||
using is_always_equal = std::true_type;
|
using is_always_equal = std::true_type;
|
||||||
|
|
||||||
|
template<class U>
|
||||||
|
struct rebind
|
||||||
|
{
|
||||||
|
using other = handler_alloc<U, CompletionHandler>;
|
||||||
|
};
|
||||||
|
|
||||||
handler_alloc() = delete;
|
handler_alloc() = delete;
|
||||||
handler_alloc(handler_alloc&&) = default;
|
handler_alloc(handler_alloc&&) = default;
|
||||||
handler_alloc(handler_alloc const&) = default;
|
handler_alloc(handler_alloc const&) = default;
|
||||||
|
Reference in New Issue
Block a user