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:
Howard Hinnant
2017-09-05 13:14:51 -04:00
committed by Vinnie Falco
parent 0007afdaf2
commit 4880cdd472
2 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,7 @@
Version 113:
* Fix handler signature in async_read_header
* Remove field_range copy constructor
--------------------------------------------------------------------------------

View File

@ -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)