forked from boostorg/beast
Remove field_range copy constructor
* This presence of the user-declared copy constructor makes the compiler-provided copy assignment operator deprecated. This change allows the compiler to provide both copy members without deprecated behavior.
This commit is contained in:
committed by
Vinnie Falco
parent
0007afdaf2
commit
4880cdd472
@@ -1,6 +1,7 @@
|
|||||||
Version 113:
|
Version 113:
|
||||||
|
|
||||||
* Fix handler signature in async_read_header
|
* Fix handler signature in async_read_header
|
||||||
|
* Remove field_range copy constructor
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@@ -123,8 +123,6 @@ public:
|
|||||||
using value_type =
|
using value_type =
|
||||||
typename const_iterator::value_type;
|
typename const_iterator::value_type;
|
||||||
|
|
||||||
field_range(field_range const&) = default;
|
|
||||||
|
|
||||||
field_range(iter_type first, iter_type last)
|
field_range(iter_type first, iter_type last)
|
||||||
: first_(first)
|
: first_(first)
|
||||||
, last_(last)
|
, last_(last)
|
||||||
|
Reference in New Issue
Block a user