Commit 59cf171d authored by rodolph.perfetta's avatar rodolph.perfetta Committed by Commit bot

Fix issue when compiling with gcc 4.6.

BUG=

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

Cr-Commit-Position: refs/heads/master@{#26592}
parent 2d7d81a5
......@@ -1435,7 +1435,7 @@ void CopyCharsUnsigned(uint8_t* dest, const uint8_t* src, size_t chars) {
void CopyCharsUnsigned(uint16_t* dest, const uint8_t* src, size_t chars) {
if (chars >= kMinComplexConvertMemCopy) {
if (chars >= static_cast<size_t>(kMinComplexConvertMemCopy)) {
MemCopyUint16Uint8(dest, src, chars);
} else {
MemCopyUint16Uint8Wrapper(dest, src, chars);
......
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