Boost logo

Boost-Commit :

From: dgregor_at_[hidden]
Date: 2008-05-19 08:05:40


Author: dgregor
Date: 2008-05-19 08:05:39 EDT (Mon, 19 May 2008)
New Revision: 45540
URL: http://svn.boost.org/trac/boost/changeset/45540

Log:
Final touches on n2617.pdf
Text files modified:
   sandbox/committee/concepts/wording/wording.tex | 12 ++++++------
   1 files changed, 6 insertions(+), 6 deletions(-)

Modified: sandbox/committee/concepts/wording/wording.tex
==============================================================================
--- sandbox/committee/concepts/wording/wording.tex (original)
+++ sandbox/committee/concepts/wording/wording.tex 2008-05-19 08:05:39 EDT (Mon, 19 May 2008)
@@ -77,8 +77,8 @@
   Utilities (Revision 3)
 \item N2623=08-0133: Concepts for the C++0x Standard Library:
   Containers (Revision 1)
-\item N2624=08-0134: Concepts for the C++0x Standard Library:
- Iterators (Revision 2)
+\item N2624=08-0134: Iterator Concepts for the C++0x Standard Library
+ (Revision 2)
 \item N2625=08-0135: Concepts for the C++0x Standard Library:
   Algorithms (Revision 2)
 \item N2626=08-0136: Concepts for the C++0x Standard Library: Numerics
@@ -623,7 +623,7 @@
 concept Callable1<typename F, typename T1> {
   typename result_type;
   result_type operator()(F&, T1);
-}
+@\textcolor{addclr}{}@}
 
 template<typename F, typename T1>
 requires Callable1<F, T1>
@@ -883,7 +883,7 @@
   late_check {
     r = x + y; // uses operator+ found at instantiation time (not considering Semigroup<T>::operator+)
   }
- return r;
+ @\textcolor{addclr}{}@return r;
 }
 \end{codeblock}
 \exitexample\
@@ -1937,7 +1937,7 @@
     void h() &&; // OK, all declarations have a ref-qualifier
     void i() &;
     void f() const; // ill-formed, prior declaration of i
- // has a ref-qualifier
+ @\textcolor{black}{}@// has a ref-qualifier
 };
 \end{codeblock}
 \exitexample\
@@ -5947,7 +5947,7 @@
 void f(const T& x) {
   vector<T> vec(1, x);
   T& ref = vec.front();
-}
+@\textcolor{addclr}{}@}
 
 void g(int i, int* ip, bool b) {
   f(i); // okay: instantiation of f<int> uses vector<int>, instantiated from A


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