Fix cast for Windows
git-svn-id: https://cld2.googlecode.com/svn/trunk@83 b252ecd4-b096-bf77-eb8e-91563289f87e
This commit is contained in:
@@ -704,9 +704,9 @@ int CheapSqueezeInplace(char* isrc,
|
|||||||
}
|
}
|
||||||
if (FLAGS_cld_showme) {
|
if (FLAGS_cld_showme) {
|
||||||
// Mark the deletion point with black square U+25A0
|
// Mark the deletion point with black square U+25A0
|
||||||
*dst++ = static_cast<char>(0xe2);
|
*dst++ = static_cast<unsigned char>(0xe2);
|
||||||
*dst++ = static_cast<char>(0x96);
|
*dst++ = static_cast<unsigned char>(0x96);
|
||||||
*dst++ = static_cast<char>(0xa0);
|
*dst++ = static_cast<unsigned char>(0xa0);
|
||||||
*dst++ = ' ';
|
*dst++ = ' ';
|
||||||
}
|
}
|
||||||
skipping = true;
|
skipping = true;
|
||||||
|
Reference in New Issue
Block a user