Commit fd697fc2 authored by Mark Mentovai's avatar Mark Mentovai

Declare string16 traits’ move() correctly.

R=danakj@chromium.org

Review URL: https://codereview.chromium.org/1020333002

Cr-Commit-Position: refs/heads/master@{#321610}
parent 3ad92fa6
......@@ -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);
}
......
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