Fix cast for Windows

git-svn-id: https://cld2.googlecode.com/svn/trunk@83 b252ecd4-b096-bf77-eb8e-91563289f87e
This commit is contained in:
hajimehoshi@google.com
2013-09-12 09:56:14 +00:00
parent bb30737ea0
commit 7bf39c4999

View File

@@ -704,9 +704,9 @@ int CheapSqueezeInplace(char* isrc,
}
if (FLAGS_cld_showme) {
// Mark the deletion point with black square U+25A0
*dst++ = static_cast<char>(0xe2);
*dst++ = static_cast<char>(0x96);
*dst++ = static_cast<char>(0xa0);
*dst++ = static_cast<unsigned char>(0xe2);
*dst++ = static_cast<unsigned char>(0x96);
*dst++ = static_cast<unsigned char>(0xa0);
*dst++ = ' ';
}
skipping = true;