diff options
Diffstat (limited to 'boost/algorithm/string')
-rw-r--r-- | boost/algorithm/string/find_iterator.hpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/boost/algorithm/string/find_iterator.hpp b/boost/algorithm/string/find_iterator.hpp index 5834407f0..5a52d92e4 100644 --- a/boost/algorithm/string/find_iterator.hpp +++ b/boost/algorithm/string/find_iterator.hpp @@ -230,7 +230,12 @@ namespace boost { \post eof()==true */ - split_iterator() { m_bEof = true; } + split_iterator() : + m_Next(), + m_End(), + m_bEof(true) + {} + //! Copy constructor /*! Construct a copy of the split_iterator |