Boost logo

Boost-Commit :

From: dgregor_at_[hidden]
Date: 2008-08-17 01:07:05


Author: dgregor
Date: 2008-08-17 01:07:05 EDT (Sun, 17 Aug 2008)
New Revision: 48180
URL: http://svn.boost.org/trac/boost/changeset/48180

Log:
Fix some formatting in the numerics chapter
Text files modified:
   sandbox/committee/concepts/stdlib/clib-numerics.tex | 8 ++++----
   1 files changed, 4 insertions(+), 4 deletions(-)

Modified: sandbox/committee/concepts/stdlib/clib-numerics.tex
==============================================================================
--- sandbox/committee/concepts/stdlib/clib-numerics.tex (original)
+++ sandbox/committee/concepts/stdlib/clib-numerics.tex 2008-08-17 01:07:05 EDT (Sun, 17 Aug 2008)
@@ -3446,7 +3446,7 @@
                        HasPlus<InIter::value_type, _InIter::reference>::result_type>
           && Constructible<InIter::value_type, _InIter::reference>
     OutIter partial_sum(InIter @\farg{first}@, InIter @\farg{last}@,
- OutIter @\farg{result}@);
+ OutIter @\farg{result}@);
   template<InputIterator InIter, OutputIterator<auto, const InIter::value_type&> OutIter,
            Callable<auto, const InIter::value_type&, InIter::reference> BinaryOperation>
     requires HasAssign<InIter::value_type, BinaryOperation::result_type>
@@ -3460,7 +3460,7 @@
           && OutputIterator<OutIter, HasMinus<InIter::value_type, InIter::value_type>::result_type>
           && MoveAssignable<InIter::value_type>
     OutIter adjacent_difference(InIter @\farg{first}@, InIter @\farg{last}@,
- OutIter @\farg{result}@);
+ OutIter @\farg{result}@);
   template <InputIterator InIter, OutputIterator<auto, const InIter::value_type&> OutIter,
             Callable<auto, const InIter::value_type&, const InIter::value_type&> BinaryOperation>
     requires Constructible<_InIter::value_type, _InIter::reference>
@@ -3468,8 +3468,8 @@
           && MoveAssignable<InIter::value_type>
           && CopyConstructible<BinaryOperation>
     OutIter adjacent_difference(InIter @\farg{first}@, InIter @\farg{last}@,
- OutIter @\farg{result}@,
- BinaryOperation @\farg{binary_op}@);
+ OutIter @\farg{result}@,
+ BinaryOperation @\farg{binary_op}@);
 \end{codeblock}
 \color{black}
 


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