mirror of
https://github.com/boostorg/algorithm.git
synced 2025-07-05 08:46:34 +02:00
Fix an uninitialized member in a default-initialized split_iterator; Refs #9335
[SVN r86583]
This commit is contained in:
@ -230,7 +230,7 @@ namespace boost {
|
|||||||
|
|
||||||
\post eof()==true
|
\post eof()==true
|
||||||
*/
|
*/
|
||||||
split_iterator() {}
|
split_iterator() { m_bEof = true; }
|
||||||
//! Copy constructor
|
//! Copy constructor
|
||||||
/*!
|
/*!
|
||||||
Construct a copy of the split_iterator
|
Construct a copy of the split_iterator
|
||||||
|
Reference in New Issue
Block a user