OSDN Git Service

2002-05-21 Phil Edwards <pme@gcc.gnu.org>
authorpme <pme@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 21 May 2002 21:09:11 +0000 (21:09 +0000)
committerpme <pme@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 21 May 2002 21:09:11 +0000 (21:09 +0000)
* include/bits/stl_pair.h:  Tweak comment markup.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53700 138bc75d-0d04-0410-961f-82ee72b054a4

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/stl_pair.h

index c45456c..c82902f 100644 (file)
@@ -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>
index d689ccc..b0411b2 100644 (file)
@@ -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)
 {