Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r48767 - sandbox/committee/concepts/stdlib
From: dgregor_at_[hidden]
Date: 2008-09-13 09:32:16


Author: dgregor
Date: 2008-09-13 09:32:15 EDT (Sat, 13 Sep 2008)
New Revision: 48767
URL: http://svn.boost.org/trac/boost/changeset/48767

Log:
Parens
Text files modified:
   sandbox/committee/concepts/stdlib/clib-utilities.tex | 10 +++++-----
   1 files changed, 5 insertions(+), 5 deletions(-)

Modified: sandbox/committee/concepts/stdlib/clib-utilities.tex
==============================================================================
--- sandbox/committee/concepts/stdlib/clib-utilities.tex (original)
+++ sandbox/committee/concepts/stdlib/clib-utilities.tex 2008-09-13 09:32:15 EDT (Sat, 13 Sep 2008)
@@ -198,10 +198,10 @@
   template <@\changedConcepts{class}{VariableType}@ T1, @\changedConcepts{class}{VariableType}@ T2> struct tuple_element<1, std::pair<T1, T2> >;
 
   template<size_t I, class T1, class T2>
- @\addedConcepts{requires True<I < 2>}@
+ @\addedConcepts{requires True<(I < 2)>}@
     P& get(std::pair<T1, T2>&);
   template<size_t I, class T1, class T2>
- @\addedConcepts{requires True<I < 2>}@
+ @\addedConcepts{requires True<(I < 2)>}@
     const P& get(const std::pair<T1, T2>&);
 }
 \end{codeblock}
@@ -742,11 +742,11 @@
 \index{get@\tcode{get}!pair@\tcode{pair}}%
 \begin{itemdecl}
 @\ptr_at_template<int I, class T1, class T2>
- @\addedConcepts{requires True<I < 2>}@
+ @\addedConcepts{requires True<(I < 2)>}@
   P& get(pair<T1, T2>&);
 
 @\ptr_at_template<int I, class T1, class T2>
- @\addedConcepts{requires True<I < 2>}@
+ @\addedConcepts{requires True<(I < 2)>}@
   const P& get(const pair<T1, T2>&);
 \end{itemdecl}
 \begin{itemdescr}
@@ -2851,4 +2851,4 @@
 \bibliographystyle{plain}
 \bibliography{local}
 
-\end{document}
\ No newline at end of file
+\end{document}


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