From: Phil Edwards Date: Tue, 21 May 2002 21:09:43 +0000 (+0000) Subject: stl_pair.h: Tweak comment markup. X-Git-Tag: releases/gcc-3.1.1~310 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a93655993818e9abca7c04fef23c40e2c9bc15bb;p=thirdparty%2Fgcc.git stl_pair.h: Tweak comment markup. 2002-05-21 Phil Edwards * include/bits/stl_pair.h: Tweak comment markup. From-SVN: r53701 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 2ad9fa6351fd..766b652019ca 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2002-05-21 Phil Edwards + + * include/bits/stl_pair.h: Tweak comment markup. + 2002-05-19 Kaveh R. Ghazi * configure.in (AC_CHECK_HEADERS): Check for string.h & stdlib.h. diff --git a/libstdc++-v3/include/bits/stl_pair.h b/libstdc++-v3/include/bits/stl_pair.h index d689ccc8d27d..b0411b2becc9 100644 --- a/libstdc++-v3/include/bits/stl_pair.h +++ b/libstdc++-v3/include/bits/stl_pair.h @@ -95,7 +95,7 @@ inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) return __x.first == __y.first && __x.second == __y.second; } -/// http://gcc.gnu.org/onlinedocs/libstdc++/20_util/howto.html#pairlt +/// template inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {