char_traits.h (move): Reverse qualification of memmove with std::.
authorJeffrey Oldham <oldham@codesourcery.com>
Mon, 4 Jun 2001 16:57:04 +0000 (16:57 +0000)
committerJeffrey D. Oldham <oldham@gcc.gnu.org>
Mon, 4 Jun 2001 16:57:04 +0000 (16:57 +0000)
2001-06-04  Jeffrey Oldham  <oldham@codesourcery.com>

* include/bits/char_traits.h (move): Reverse qualification of
memmove with std::.
(copy): Reverse qualification of memcpy with std::.

From-SVN: r42856

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

index 0abbf7387cdddc247148d6e203ed186c0c1f93e0..3688ab3fac949f722aa3d5a29a5dd507f389e366 100644 (file)
@@ -1,3 +1,9 @@
+2001-06-04  Jeffrey Oldham  <oldham@codesourcery.com>
+
+       * include/bits/char_traits.h (move): Reverse qualification of
+       memmove with std::.
+       (copy): Reverse qualification of memcpy with std::.
+
 2001-06-04  Jeffrey Oldham  <oldham@codesourcery.com>
 
        * include/bits/char_traits.h (move): Qualify memmove with std::.
index 73cce5172e55002a93a5abacfaa4d3d643ca6fae..b98a304cba13d9a9ee0a62e04379257138b65584 100644 (file)
@@ -93,11 +93,11 @@ namespace std
 
       static char_type* 
       move(char_type* __s1, const char_type* __s2, size_t __n)
-      { return (char_type*) std::memmove(__s1, __s2, __n * sizeof(char_type)); }
+      { return (char_type*) memmove(__s1, __s2, __n * sizeof(char_type)); }
 
       static char_type* 
       copy(char_type* __s1, const char_type* __s2, size_t __n)
-      { return (char_type*) std::memcpy(__s1, __s2, __n * sizeof(char_type)); }
+      { return (char_type*) memcpy(__s1, __s2, __n * sizeof(char_type)); }
 
       static char_type* 
       assign(char_type* __s, size_t __n, char_type __a)