diff options
Diffstat (limited to 'base')
-rw-r--r-- | base/strings/string16.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/strings/string16.h b/base/strings/string16.h index 804dca4..1a01a96 100644 --- a/base/strings/string16.h +++ b/base/strings/string16.h @@ -94,7 +94,7 @@ struct string16_char_traits { return c16memchr(s, a, n); } - static char_type* move(char_type* s1, const char_type* s2, int_type n) { + static char_type* move(char_type* s1, const char_type* s2, size_t n) { return c16memmove(s1, s2, n); } |