mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-02 08:13:58 +08:00
char_traits.h (char_traits<wchar_t>::move): Change last parameter from int_type to size_t.
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
This commit is contained in:
parent
b0afa2fca4
commit
73a530bdcc
@ -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,
|
||||
|
@ -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*
|
||||
|
Loading…
Reference in New Issue
Block a user