diff -dur a/basic_regex.hpp b/basic_regex.hpp
|
a
|
b
|
|
| 243 | 243 | // begin, end: |
| 244 | 244 | const_iterator BOOST_REGEX_CALL begin()const |
| 245 | 245 | { |
| 246 | | return (!this->m_status ? 0 : this->m_expression); |
| | 246 | return (this->m_status ? 0 : this->m_expression); |
| 247 | 247 | } |
| 248 | 248 | const_iterator BOOST_REGEX_CALL end()const |
| 249 | 249 | { |
| 250 | | return (!this->m_status ? 0 : this->m_expression + this->m_expression_len); |
| | 250 | return (this->m_status ? 0 : this->m_expression + this->m_expression_len); |
| 251 | 251 | } |
| 252 | 252 | flag_type BOOST_REGEX_CALL flags()const |
| 253 | 253 | { |