re PR libstdc++/29368 (wrong STL docs for rfind())
authorPaolo Carlini <pcarlini@suse.de>
Fri, 6 Oct 2006 11:47:56 +0000 (11:47 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Fri, 6 Oct 2006 11:47:56 +0000 (11:47 +0000)
2006-10-06  Paolo Carlini  <pcarlini@suse.de>

PR libstdc++/29368
* include/bits/basic_string.h: Adjust rfind documentation.
* include/ext/vstring.h: Likewise.

From-SVN: r117496

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/basic_string.h
libstdc++-v3/include/ext/vstring.h

index e90d8f8047322a97904f384f8f4f145cf0e807f5..057d0eb61983aeff570057fb2bf2fb08400fe214 100644 (file)
@@ -1,3 +1,9 @@
+2006-10-06  Paolo Carlini  <pcarlini@suse.de>
+
+       PR libstdc++/29368
+       * include/bits/basic_string.h: Adjust rfind documentation.
+       * include/ext/vstring.h: Likewise.
+
 2006-10-06  Paolo Carlini  <pcarlini@suse.de>
 
        PR libstdc++/29354
index 3e4f19d727518bfdef469e78dfbb2998aa5ea1e4..56c3fe6097af10480a9331d4d1fb4fe21c4b3eb9 100644 (file)
@@ -1627,7 +1627,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
       /**
        *  @brief  Find last position of a C string.
        *  @param s  C string to locate.
-       *  @param pos  Index of character to start search at (default 0).
+       *  @param pos  Index of character to start search at (default end).
        *  @return  Index of start of  last occurrence.
        *
        *  Starting from @a pos, searches backward for the value of @a s within
@@ -1644,7 +1644,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
       /**
        *  @brief  Find last position of a character.
        *  @param c  Character to locate.
-       *  @param pos  Index of character to search back from (default 0).
+       *  @param pos  Index of character to search back from (default end).
        *  @return  Index of last occurrence.
        *
        *  Starting from @a pos, searches backward for @a c within this string.
index 62e9673d3efe25e4ae8d1f2e974d2e8d4d35a5dc..c3a21b88c05083acca3e0222adb503423b960700 100644 (file)
@@ -1363,7 +1363,7 @@ _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx)
       /**
        *  @brief  Find last position of a C string.
        *  @param s  C string to locate.
-       *  @param pos  Index of character to start search at (default 0).
+       *  @param pos  Index of character to start search at (default end).
        *  @return  Index of start of  last occurrence.
        *
        *  Starting from @a pos, searches backward for the value of @a s within
@@ -1380,7 +1380,7 @@ _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx)
       /**
        *  @brief  Find last position of a character.
        *  @param c  Character to locate.
-       *  @param pos  Index of character to search back from (default 0).
+       *  @param pos  Index of character to search back from (default end).
        *  @return  Index of last occurrence.
        *
        *  Starting from @a pos, searches backward for @a c within this string.