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:
Petur Runolfsson 2003-07-15 17:30:10 +00:00 committed by Paolo Carlini
parent b0afa2fca4
commit 73a530bdcc
2 changed files with 6 additions and 1 deletions

View 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,

View 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*