Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r83163 - website/public_html/live/feed/history
From: marshall_at_[hidden]
Date: 2013-02-26 11:42:37


Author: marshall
Date: 2013-02-26 11:42:37 EST (Tue, 26 Feb 2013)
New Revision: 83163
URL: http://svn.boost.org/trac/boost/changeset/83163

Log:
Added comment about 'copy_while' changes
Text files modified:
   website/public_html/live/feed/history/boost_1_54_0.qbk | 3 +++
   1 files changed, 3 insertions(+), 0 deletions(-)

Modified: website/public_html/live/feed/history/boost_1_54_0.qbk
==============================================================================
--- website/public_html/live/feed/history/boost_1_54_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_54_0.qbk 2013-02-26 11:42:37 EST (Tue, 26 Feb 2013)
@@ -56,6 +56,9 @@
 * [phrase library..[@/libs/context/ Context]:]
   * Support for SPARC architecture added.
 
+* [phrase library..[@/libs/algorithm/ Algorithm]:]
+ * The return types for copy_while and copy_until have been changed. This is an interface change. If you were using the return values from these functions, then you will have to modify your code. Instead of just returning the modified `OutputIterator`, these functions now return a `std::pair<InputIterator, OutputIterator>`. If this change affects your code, the simplest change is to add a `.second` to the end of the call, which will get you the same behavior that you had before.
+
 * [phrase library..[@/libs/coroutine/ Coroutine]:]
   * Support for segmented stacks (stack grows on demand) added.
   * fixes for #7805, #7899, #7972, #8023, #8024, #8101


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk