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

Unified Diff: views/controls/table/table_view.cc

Issue 2222002: Unsigned warning fix - take 2 (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 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 | « sandbox/src/win_utils_unittest.cc ('k') | webkit/default_plugin/plugin_database_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/controls/table/table_view.cc
===================================================================
--- views/controls/table/table_view.cc (revision 48256)
+++ views/controls/table/table_view.cc (working copy)
@@ -370,7 +370,7 @@
}
void TableView::AddColumn(const TableColumn& col) {
- DCHECK_EQ(0, all_columns_.count(col.id));
+ DCHECK_EQ(0u, all_columns_.count(col.id));
all_columns_[col.id] = col;
}
« no previous file with comments | « sandbox/src/win_utils_unittest.cc ('k') | webkit/default_plugin/plugin_database_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698