From f5885c6fb0302081c17e436f3266cf639f58033b Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Tue, 18 May 2010 17:53:36 +0000 Subject: [PATCH] Merge minmax from the trunk [SVN r62088] --- minmax/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/minmax/index.html b/minmax/index.html index d3777f1..ad1b801 100644 --- a/minmax/index.html +++ b/minmax/index.html @@ -92,11 +92,11 @@ Synopsis of <boost/algorithm/minmax.hpp> namespace boost { template <class T> - tuple<T const&, T const&> > + tuple<T const&, T const&> minmax(const T& a, const T& b); template <class T, class BinaryPredicate> - tuple<T const&, T const&> > + tuple<T const&, T const&> minmax(const T& a, const T& b, BinaryPredicate comp); }