mirror of
https://github.com/boostorg/spirit.git
synced 2026-01-19 04:42:11 +00:00
provided copy ctor to avoid deprecated-copy-with-user-provided-copy warning
This commit is contained in:
@@ -54,6 +54,9 @@ namespace boost { namespace spirit
|
||||
basic_istream_iterator()
|
||||
: base_type() {}
|
||||
|
||||
basic_istream_iterator(basic_istream_iterator const& rhs)
|
||||
: base_type(rhs) {}
|
||||
|
||||
explicit basic_istream_iterator(std::basic_istream<Elem, Traits>& x)
|
||||
: base_type(x) {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user