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

Unified Diff: chrome/common/stl_util-inl.h

Issue 40226: Fix files with lines > 80 cols. Part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 10 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 | « chrome/common/resource_dispatcher_unittest.cc ('k') | chrome/common/time_format_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/stl_util-inl.h
===================================================================
--- chrome/common/stl_util-inl.h (revision 11111)
+++ chrome/common/stl_util-inl.h (working copy)
@@ -196,8 +196,12 @@
HashSetEquality(const HashSet& set_a,
const HashSet& set_b) {
if (set_a.size() != set_b.size()) return false;
- for (typename HashSet::const_iterator i = set_a.begin(); i != set_a.end(); ++i)
- if (set_b.find(*i) == set_b.end()) return false;
+ for (typename HashSet::const_iterator i = set_a.begin();
+ i != set_a.end();
+ ++i) {
+ if (set_b.find(*i) == set_b.end())
+ return false;
+ }
return true;
}
« no previous file with comments | « chrome/common/resource_dispatcher_unittest.cc ('k') | chrome/common/time_format_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698