From: Phil Edwards Date: Tue, 21 May 2002 21:09:11 +0000 (+0000) Subject: stl_pair.h: Tweak comment markup. X-Git-Tag: releases/gcc-3.3.0~4915 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d476dcad7f5d7b4c0a03d5a053e713c6b1b3a528;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: r53700 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index c45456c4c6a6..c82902f49bfb 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-21 Phil Edwards * include/ext/stdio_filebuf.h: Add header guards. Doxygenate. 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) {