]> gcc.gnu.org Git - gcc.git/commitdiff
char_traits.h (char_traits<wchar_t>::move): Change last parameter from int_type to...
authorPetur Runolfsson <peturr02@ru.is>
Tue, 15 Jul 2003 17:30:10 +0000 (17:30 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Tue, 15 Jul 2003 17:30:10 +0000 (17:30 +0000)
2003-07-15  Petur Runolfsson  <peturr02@ru.is>

* include/bits/char_traits.h (char_traits<wchar_t>::move):
Change last parameter from int_type to size_t.

From-SVN: r69415

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

index 320ee442cad83a4ad5f1bf12d5cb68efc9ef1823..bcd3430e8267af25345026294f0729a3dd8561d9 100644 (file)
@@ -1,3 +1,8 @@
+2003-07-15  Petur Runolfsson  <peturr02@ru.is>
+
+       * include/bits/char_traits.h (char_traits<wchar_t>::move):
+       Change last parameter from int_type to size_t.
+
 2003-07-15  Jerry Quinn  <jlquinn@optonline.net>
 
        * include/bits/stl_algo.h (includes, set_union, set_intersection,
index aa6d7f48a6dca65f02fa158a32230cd9164ed251..80736942b9076d946b4fe751751efb908bb202a6 100644 (file)
@@ -216,7 +216,7 @@ namespace std
       { return wmemchr(__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 wmemmove(__s1, __s2, __n); }
 
       static char_type* 
This page took 0.066554 seconds and 5 git commands to generate.