Commit 73a530bd by Petur Runolfsson Committed by Paolo Carlini

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
parent b0afa2fc
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> 2003-07-15 Jerry Quinn <jlquinn@optonline.net>
* include/bits/stl_algo.h (includes, set_union, set_intersection, * include/bits/stl_algo.h (includes, set_union, set_intersection,
......
...@@ -216,7 +216,7 @@ namespace std ...@@ -216,7 +216,7 @@ namespace std
{ return wmemchr(__s, __a, __n); } { return wmemchr(__s, __a, __n); }
static char_type* 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); } { return wmemmove(__s1, __s2, __n); }
static char_type* static char_type*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment