]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
stl_pair.h: Tweak comment markup.
authorPhil Edwards <pme@gcc.gnu.org>
Tue, 21 May 2002 21:09:43 +0000 (21:09 +0000)
committerPhil Edwards <pme@gcc.gnu.org>
Tue, 21 May 2002 21:09:43 +0000 (21:09 +0000)
2002-05-21  Phil Edwards  <pme@gcc.gnu.org>

* include/bits/stl_pair.h:  Tweak comment markup.

From-SVN: r53701

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

index 2ad9fa6351fd1bd80f146d05214c948f4e040009..766b652019ca2ddd5ca5ad4ca6b9bd6b8e0c3227 100644 (file)
@@ -1,3 +1,7 @@
+2002-05-21  Phil Edwards  <pme@gcc.gnu.org>
+
+       * include/bits/stl_pair.h:  Tweak comment markup.
+
 2002-05-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * configure.in (AC_CHECK_HEADERS): Check for string.h & stdlib.h.
index d689ccc8d27d63af737739f864b37c095f95ef57..b0411b2becc9e2cc1a5eed119136c78856d259dc 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)
 {