Index: net/tools/balsa/split.cc |
diff --git a/net/tools/balsa/split.cc b/net/tools/balsa/split.cc |
index 20be430d7310f260b01ccc249d672a069774dc7b..8e0b75763bfc476aa87f1de57a3584114fd07933 100644 |
--- a/net/tools/balsa/split.cc |
+++ b/net/tools/balsa/split.cc |
@@ -25,7 +25,7 @@ void SplitStringPieceToVector(const base::StringPiece& full, |
if (delim[1] == '\0') { |
base::StringPiece::const_iterator s = full.begin(); |
base::StringPiece::const_iterator e = s; |
- for (;e != full.end(); ++e) { |
+ for (; e != full.end(); ++e) { |
if (*e == delim[0]) { |
if (e != s || !omit_empty_strings) { |
vec->push_back(base::StringPiece(s, e - s)); |
@@ -43,9 +43,9 @@ void SplitStringPieceToVector(const base::StringPiece& full, |
} else { |
base::StringPiece::const_iterator s = full.begin(); |
base::StringPiece::const_iterator e = s; |
- for (;e != full.end(); ++e) { |
+ for (; e != full.end(); ++e) { |
bool one_matched = false; |
- for (const char *d = delim; *d != '\0'; ++d) { |
+ for (const char* d = delim; *d != '\0'; ++d) { |
if (*d == *e) { |
one_matched = true; |
break; |
@@ -69,4 +69,3 @@ void SplitStringPieceToVector(const base::StringPiece& full, |
} |
} // namespace net |
- |