mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 21:07:26 +02:00
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:
|
||||
|
||||
* Fix handler signature in async_read_header
|
||||
* Remove field_range copy constructor
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
|
@ -123,8 +123,6 @@ public:
|
||||
using value_type =
|
||||
typename const_iterator::value_type;
|
||||
|
||||
field_range(field_range const&) = default;
|
||||
|
||||
field_range(iter_type first, iter_type last)
|
||||
: first_(first)
|
||||
, last_(last)
|
||||
|
Reference in New Issue
Block a user