summaryrefslogtreecommitdiff
path: root/libstdc++-v3
diff options
context:
space:
mode:
authorredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2014-10-08 08:49:22 +0000
committerredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2014-10-08 08:49:22 +0000
commite39d7aa8235f3b20fed120f663fbd6ad62209b55 (patch)
tree7765fcc2161367ff1deb998c8d6b679f5d7abf21 /libstdc++-v3
parent6e9c74cc000411ab379961fab1296be10a1c6c1e (diff)
downloadgcc-e39d7aa8235f3b20fed120f663fbd6ad62209b55.tar.gz
* include/bits/regex.h (regex_token_iterator::_M_end_of_seq): Add
const qualifier. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@215995 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r--libstdc++-v3/ChangeLog5
-rw-r--r--libstdc++-v3/include/bits/regex.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index c2ed337f37d..ab082d2503c 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -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
diff --git a/libstdc++-v3/include/bits/regex.h b/libstdc++-v3/include/bits/regex.h
index 4ec20d74901..4244f2e5419 100644
--- a/libstdc++-v3/include/bits/regex.h
+++ b/libstdc++-v3/include/bits/regex.h
@@ -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;