forked from boostorg/beast
@@ -9,6 +9,7 @@ Version 50
|
|||||||
* Tidy up basic_fields, header, and field concepts
|
* Tidy up basic_fields, header, and field concepts
|
||||||
* Fields concept work
|
* Fields concept work
|
||||||
* Body documentation work
|
* Body documentation work
|
||||||
|
* Add missing handler_alloc nested types
|
||||||
|
|
||||||
API Changes:
|
API Changes:
|
||||||
|
|
||||||
|
@@ -10,6 +10,7 @@
|
|||||||
|
|
||||||
#include <beast/config.hpp>
|
#include <beast/config.hpp>
|
||||||
#include <boost/asio/handler_alloc_hook.hpp>
|
#include <boost/asio/handler_alloc_hook.hpp>
|
||||||
|
#include <cstddef>
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
@@ -56,6 +57,12 @@ private:
|
|||||||
public:
|
public:
|
||||||
using value_type = T;
|
using value_type = T;
|
||||||
using is_always_equal = std::true_type;
|
using is_always_equal = std::true_type;
|
||||||
|
using pointer = T*;
|
||||||
|
using reference = T&;
|
||||||
|
using const_pointer = T const*;
|
||||||
|
using const_reference = T const&;
|
||||||
|
using size_type = std::size_t;
|
||||||
|
using difference_type = std::ptrdiff_t;
|
||||||
|
|
||||||
template<class U>
|
template<class U>
|
||||||
struct rebind
|
struct rebind
|
||||||
|
Reference in New Issue
Block a user