aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Edwards <pme@gcc.gnu.org>2002-05-21 21:09:11 +0000
committerPhil Edwards <pme@gcc.gnu.org>2002-05-21 21:09:11 +0000
commitd476dcad7f5d7b4c0a03d5a053e713c6b1b3a528 (patch)
treed6b72e4f7030b188f8089508ef42cdfbada9e417
parent844f9ba6ad91d8eccb9aa1b0e8d9ded825387360 (diff)
downloadgcc-d476dcad7f5d7b4c0a03d5a053e713c6b1b3a528.zip
gcc-d476dcad7f5d7b4c0a03d5a053e713c6b1b3a528.tar.gz
gcc-d476dcad7f5d7b4c0a03d5a053e713c6b1b3a528.tar.bz2
stl_pair.h: Tweak comment markup.
2002-05-21 Phil Edwards <pme@gcc.gnu.org> * include/bits/stl_pair.h: Tweak comment markup. From-SVN: r53700
-rw-r--r--libstdc++-v3/ChangeLog4
-rw-r--r--libstdc++-v3/include/bits/stl_pair.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index c45456c..c82902f 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,5 +1,9 @@
2002-05-21 Phil Edwards <pme@gcc.gnu.org>
+ * include/bits/stl_pair.h: Tweak comment markup.
+
+2002-05-21 Phil Edwards <pme@gcc.gnu.org>
+
* include/ext/stdio_filebuf.h: Add header guards. Doxygenate.
2002-05-21 Phil Edwards <pme@gcc.gnu.org>
diff --git a/libstdc++-v3/include/bits/stl_pair.h b/libstdc++-v3/include/bits/stl_pair.h
index d689ccc..b0411b2 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
+/// <http://gcc.gnu.org/onlinedocs/libstdc++/20_util/howto.html#pairlt>
template <class _T1, class _T2>
inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
{