Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Unified Diff: Source/platform/text/UnicodeRange.cpp

Issue 207783002: Omit "int" when using "unsigned" modifier (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/image-encoders/skia/JPEGImageEncoder.cpp ('k') | Source/web/WebCache.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/text/UnicodeRange.cpp
diff --git a/Source/platform/text/UnicodeRange.cpp b/Source/platform/text/UnicodeRange.cpp
index f09cd697a206bc78b2b90f857f57cade2c2f73cf..9892259b75540a24e3bd066c46ce230c1f16aff8 100644
--- a/Source/platform/text/UnicodeRange.cpp
+++ b/Source/platform/text/UnicodeRange.cpp
@@ -427,12 +427,12 @@ static const unsigned char gUnicodeTertiaryRangeTable[cTertiaryTableSize] =
// there is such a need.
// For Indic, Southeast Asian scripts and some other scripts between
// U+0700 and U+16FF, it's extended to the third level.
-unsigned int findCharUnicodeRange(UChar32 ch)
+unsigned findCharUnicodeRange(UChar32 ch)
{
if (ch >= 0xFFFF)
return 0;
- unsigned int range;
+ unsigned range;
//search the first table
range = gUnicodeSubrangeTable[0][ch >> 12];
« no previous file with comments | « Source/platform/image-encoders/skia/JPEGImageEncoder.cpp ('k') | Source/web/WebCache.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698