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

Unified Diff: content/common/dwrite_font_platform_win.cc

Issue 1558633002: Cleanup: Remove double semicolons. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Convert CP code to a while loop, fix nit Created 5 years 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
Index: content/common/dwrite_font_platform_win.cc
diff --git a/content/common/dwrite_font_platform_win.cc b/content/common/dwrite_font_platform_win.cc
index 25755f5847b5bb372cece0c4b10cd0841a81951f..dec1c16b3c5d2787692ab18af00c38041d8f2844 100644
--- a/content/common/dwrite_font_platform_win.cc
+++ b/content/common/dwrite_font_platform_win.cc
@@ -933,7 +933,7 @@ bool FontCollectionLoader::IsFileCached(UINT32 font_key) {
}
CacheMap::iterator iter = cache_map_.find(
GetFontNameFromKey(font_key).c_str());
- return iter != cache_map_.end();;
+ return iter != cache_map_.end();
}
bool FontCollectionLoader::LoadCacheFile() {

Powered by Google App Engine
This is Rietveld 408576698