diff options
author | Paolo Carlini <paolo.carlini@oracle.com> | 2013-09-07 22:57:49 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2013-09-07 22:57:49 +0000 |
commit | 9a7fb488e39b5380418fcf04341aa3e6b960266b (patch) | |
tree | ee0412f2c8b02a02f2ae964561f5250209b472bd | |
parent | 4b21946eda1c0dade5d313ade2dfff8fdf278e7f (diff) | |
download | gcc-9a7fb488e39b5380418fcf04341aa3e6b960266b.zip gcc-9a7fb488e39b5380418fcf04341aa3e6b960266b.tar.gz gcc-9a7fb488e39b5380418fcf04341aa3e6b960266b.tar.bz2 |
re PR libstdc++/58341 (Doc conflicts with standard on forbidden range of `result` in copy_backward())
2013-09-07 Paolo Carlini <paolo.carlini@oracle.com>
PR libstdc++/58341
* include/bits/stl_algobase.h (copy_backward): Fix documentation
per DR 1206.
From-SVN: r202357
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/stl_algobase.h | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index bdbde8d..80e0139 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2013-09-07 Paolo Carlini <paolo.carlini@oracle.com> + + PR libstdc++/58341 + * include/bits/stl_algobase.h (copy_backward): Fix documentation + per DR 1206. + 2013-09-05 Tim Shen <timshen91@gmail.com> * include/bits/regex_automaton.h: Add dummy node type. Rewrite diff --git a/libstdc++-v3/include/bits/stl_algobase.h b/libstdc++-v3/include/bits/stl_algobase.h index e1daac2..1c88935 100644 --- a/libstdc++-v3/include/bits/stl_algobase.h +++ b/libstdc++-v3/include/bits/stl_algobase.h @@ -611,7 +611,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION * loop count will be known (and therefore a candidate for compiler * optimizations such as unrolling). * - * Result may not be in the range [first,last). Use copy instead. Note + * Result may not be in the range (first,last]. Use copy instead. Note * that the start of the output range may overlap [first,last). */ template<typename _BI1, typename _BI2> |