diff options
author | Tim Shen <timshen@google.com> | 2015-01-09 03:58:59 +0000 |
---|---|---|
committer | Tim Shen <timshen@gcc.gnu.org> | 2015-01-09 03:58:59 +0000 |
commit | a8e67466d35f12aa7997363984f97a35e2a40eba (patch) | |
tree | 4bf54a771ccb3f56af5d6f86fe0077e257be1959 /libstdc++-v3/ChangeLog | |
parent | e608ef6de92f53558b27b3166d5da5ea3725461d (diff) | |
download | gcc-a8e67466d35f12aa7997363984f97a35e2a40eba.tar.gz |
re PR libstdc++/64239 (regex_iterator::operator= should copy match_results::position)
PR libstdc++/64239
* include/bits/regex.h (match_results<>::swap): Use std::swap
instead of swap.
* include/bits/regex_compiler.tcc (_Compiler<>::_M_quantifier):
Likewise.
* testsuite/28_regex/match_results/swap.cc: New testcase.
From-SVN: r219373
Diffstat (limited to 'libstdc++-v3/ChangeLog')
-rw-r--r-- | libstdc++-v3/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 85b08fa4bd9..50c74af9a5d 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,12 @@ +2015-01-09 Tim Shen <timshen@google.com> + + PR libstdc++/64239 + * include/bits/regex.h (match_results<>::swap): Use std::swap + instead of swap. + * include/bits/regex_compiler.tcc (_Compiler<>::_M_quantifier): + Likewise. + * testsuite/28_regex/match_results/swap.cc: New testcase. + 2015-01-08 Jonathan Wakely <jwakely@redhat.com> PR libstdc++/60132 |