2000-05-01 Vadim Egorov <egorovv@@mailandnews.com>
authorVadim Egorov <egorovv@mailandnews.com>
Tue, 2 May 2000 04:50:23 +0000 (04:50 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Tue, 2 May 2000 04:50:23 +0000 (04:50 +0000)
        * bits/char_traits.h: Fix parameter types.
        * bits/string.tcc: Avoid traits_type::move.

From-SVN: r33603

libstdc++-v3/ChangeLog
libstdc++-v3/bits/char_traits.h
libstdc++-v3/bits/string.tcc

index c3869766d1bb674d24a2373383d2a47cc88ca740..22a8c93370acede923a8f27f6879b51dce3d90e3 100644 (file)
@@ -1,3 +1,8 @@
+2000-05-01  Vadim Egorov  <egorovv@@mailandnews.com>
+
+        * bits/char_traits.h: Fix parameter types.
+        * bits/string.tcc: Avoid traits_type::move.
+
 2000-05-01  Benjamin Kosnik  <bkoz@haight.constant.com>
 
        * src/Makefile.am (AC_CXXFLAGS): Add CPUFLAGS here.
index 3943e6e6cb74b31a2da7c8eb759d49ee0dd37e18..ae46dd29addb444976bd70c66115af1fd8b65c48 100644 (file)
@@ -1,6 +1,6 @@
-// Character Traits for use by standard string and iostream
+// Character Traits for use by standard string and iostream -*- C++ -*-
 
-// Copyright (C) 1997-1999 Free Software Foundation, Inc.
+// Copyright (C) 1997-1999, 2000 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the
@@ -79,9 +79,9 @@ namespace std {
       { return __c1 < __c2; }
 
       static int 
-      compare(const char_type* __s1, const char_type* __s2, int_type __n)
+      compare(const char_type* __s1, const char_type* __s2, size_t __n)
       { 
-       for (int_type __i = 0; __i < __n; ++__i)
+       for (size_t __i = 0; __i < __n; ++__i)
          if (!eq(__s1[__i],__s2[__i]))
            return lt(__s1[__i],__s2[__i]) ? -1 : 1;
        return 0; 
@@ -96,25 +96,25 @@ namespace std {
       }
 
       static const char_type* 
-      find(const char_type* __s, int __n, const char_type& __a)
+      find(const char_type* __s, size_t __n, const char_type& __a)
       { 
-       for (const char_type* __p = __s; __p < __s+__n; ++__p)
+       for (const char_type* __p = __s; size_t(__p - __s) < __n; ++__p)
          if (*__p == __a) return __p;
        return 0;
       }
 
       static char_type* 
-      move(char_type* __s1, const char_type* __s2, int_type __n)
+      move(char_type* __s1, const char_type* __s2, size_t __n)
       { return (char_type*) memmove(__s1, __s2, __n * sizeof(char_type)); }
 
       static char_type* 
-      copy(char_type* __s1, const char_type* __s2, int_type __n)
+      copy(char_type* __s1, const char_type* __s2, size_t __n)
       { return (char_type*) memcpy(__s1, __s2, __n * sizeof(char_type)); }
 
       static char_type* 
-      assign(char_type* __s, int_type __n, char_type __a)
+      assign(char_type* __s, size_t __n, char_type __a)
       { 
-       for (char_type* __p = __s; __p - __s < __n; ++__p) 
+       for (char_type* __p = __s; __p < __s + __n; ++__p) 
          assign(*__p, __a);
         return __s; 
       }
@@ -167,7 +167,7 @@ namespace std {
       { return __c1 < __c2; }
 
       static int 
-      compare(const char_type* __s1, const char_type* __s2, int_type __n)
+      compare(const char_type* __s1, const char_type* __s2, size_t __n)
       { return memcmp(__s1, __s2, __n); }
 
       static size_t
@@ -175,19 +175,19 @@ namespace std {
       { return strlen(__s); }
 
       static const char_type* 
-      find(const char_type* __s, int __n, const char_type& __a)
+      find(const char_type* __s, size_t __n, const char_type& __a)
       { return static_cast<char*>(memchr(__s, __a, __n)); }
 
       static char_type* 
-      move(char_type* __s1, const char_type* __s2, int_type __n)
+      move(char_type* __s1, const char_type* __s2, size_t __n)
       { return static_cast<char*>(memmove(__s1, __s2, __n)); }
 
       static char_type* 
-      copy(char_type* __s1, const char_type* __s2, int_type __n)
+      copy(char_type* __s1, const char_type* __s2, size_t __n)
       {  return static_cast<char*>(memcpy(__s1, __s2, __n)); }
 
       static char_type* 
-      assign(char_type* __s, int_type __n, char_type __a)
+      assign(char_type* __s, size_t __n, char_type __a)
       { return static_cast<char*>(memset(__s, __a, __n)); }
 
       static char_type 
@@ -232,15 +232,17 @@ namespace std {
       static void 
       assign(char_type& __c1, const char_type& __c2)
       { __c1 = __c2; }
+
       static bool 
       eq(const char_type& __c1, const char_type& __c2)
       { return __c1 == __c2; }
+
       static bool 
       lt(const char_type& __c1, const char_type& __c2)
       { return __c1 < __c2; }
 
       static int 
-      compare(const char_type* __s1, const char_type* __s2, int_type __n)
+      compare(const char_type* __s1, const char_type* __s2, size_t __n)
       { 
        for (int_type __i = 0; __i < __n; ++__i)
          if (!eq(__s1[__i], __s2[__i]))
@@ -258,9 +260,9 @@ namespace std {
       }
 
       static const char_type* 
-      find (const char_type* __s, int __n, const char_type& __a)
+      find(const char_type* __s, size_t __n, const char_type& __a)
       { 
-       for (const char_type* __p = __s; __p < __s+__n; ++__p)
+       for (const char_type* __p = __s; size_t(__p - __s) < __n; ++__p)
          if (*__p == __a) 
            return __p;
        return 0;
@@ -272,12 +274,12 @@ namespace std {
                                             __n * sizeof(wchar_t))); }
 
       static char_type* 
-      copy(char_type* __s1, const char_type* __s2, int_type __n)
+      copy(char_type* __s1, const char_type* __s2, size_t __n)
       { return static_cast<wchar_t*>(memcpy(__s1, __s2, 
                                            __n * sizeof(wchar_t))); }
 
       static char_type* 
-      assign(char_type* __s, int_type __n, char_type __a)
+      assign(char_type* __s, size_t __n, char_type __a)
       { 
        for (char_type* __p = __s; __p < __s + __n; ++__p) 
          assign(*__p, __a);
@@ -324,4 +326,3 @@ namespace std {
 
 #endif /* _CPP_BITS_CHAR_TRAITS_H */
 
-
index 475a5d52f8bba0e0fe9346cb946eff678faface7..63c0301776ad04779641101c7a1ca7c66b93a66a 100644 (file)
@@ -280,7 +280,7 @@ namespace std
          _M_rep()->_M_dispose(__a);
          _M_data(__r->_M_refdata());
       }
-      else if (__how_much)
+      else if (__how_much && __len1 != __len2)
        {
          // Work in-place
          traits_type::move(_M_data() + __pos + __len2, __src, __how_much);
@@ -851,7 +851,3 @@ namespace std
 } // std::
 
 #endif /* _CPP_BITS_STRING_TCC */
-
-// Local Variables:
-// mode:c++
-// End: