aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVadim Egorov <egorovv@mailandnews.com>2000-05-02 04:50:23 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2000-05-02 04:50:23 +0000
commit8fd05cb0e70cfd8325a6af95bc3e724fa59d99a3 (patch)
tree556df14f76cfd77436bf29613add4e052a437a62
parentb7805411a0e4a53b1a2834ad4570a82aa74ace27 (diff)
downloadgcc-8fd05cb0e70cfd8325a6af95bc3e724fa59d99a3.zip
gcc-8fd05cb0e70cfd8325a6af95bc3e724fa59d99a3.tar.gz
gcc-8fd05cb0e70cfd8325a6af95bc3e724fa59d99a3.tar.bz2
2000-05-01 Vadim Egorov <egorovv@@mailandnews.com>
* bits/char_traits.h: Fix parameter types. * bits/string.tcc: Avoid traits_type::move. From-SVN: r33603
-rw-r--r--libstdc++-v3/ChangeLog5
-rw-r--r--libstdc++-v3/bits/char_traits.h43
-rw-r--r--libstdc++-v3/bits/string.tcc6
3 files changed, 28 insertions, 26 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index c386976..22a8c93 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -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.
diff --git a/libstdc++-v3/bits/char_traits.h b/libstdc++-v3/bits/char_traits.h
index 3943e6e..ae46dd2 100644
--- a/libstdc++-v3/bits/char_traits.h
+++ b/libstdc++-v3/bits/char_traits.h
@@ -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 */
-
diff --git a/libstdc++-v3/bits/string.tcc b/libstdc++-v3/bits/string.tcc
index 475a5d5..63c0301 100644
--- a/libstdc++-v3/bits/string.tcc
+++ b/libstdc++-v3/bits/string.tcc
@@ -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: