regex.h (regex_token_iterator::_M_end_of_seq): Add const qualifier.

* include/bits/regex.h (regex_token_iterator::_M_end_of_seq): Add
	const qualifier.

From-SVN: r215995
This commit is contained in:
Jonathan Wakely 2014-10-08 09:49:22 +01:00 committed by Jonathan Wakely
parent cf5986dfbc
commit 7dd9b46d29
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2014-10-08 Jonathan Wakely <jwakely@redhat.com>
* include/bits/regex.h (regex_token_iterator::_M_end_of_seq): Add
const qualifier.
2014-10-07 François Dumont <fdumont@gcc.gnu.org>
* testsuite/util/testsuite_counter_type.h

View File

@ -2689,7 +2689,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
}
constexpr bool
_M_end_of_seq()
_M_end_of_seq() const
{ return _M_result == nullptr; }
_Position _M_position;