clang-format re-run.

Re-running clang-format to take into account the recent change in it.
(https://gerrit.chromium.org/gerrit/#/c/69926/ )

Change-Id: Ie11afcaaf07a1967f65fd765f1a7c7112c85875a
This commit is contained in:
Vignesh Venkatasubramanian
2014-04-29 00:35:56 -07:00
parent c6767b94fd
commit 7b2450131c
4 changed files with 12 additions and 13 deletions

View File

@@ -141,7 +141,7 @@ int Parser::Init() {
if (e < 0) // error
return e;
if (e > 0) // EOF
if (e > 0) // EOF
return 0; // weird but valid
if (!line.empty()) {
@@ -162,7 +162,7 @@ int Parser::Init() {
if (e < 0) // error
return e;
if (e > 0) // EOF
if (e > 0) // EOF
return 0; // weird but we allow it
if (!line.empty())
@@ -515,7 +515,7 @@ int Parser::ParseSettings(const std::string& line, std::string::size_type idx,
const char c = line[idx];
if (c == kNUL) // end-of-line
return 0; // success
return 0; // success
if (c != kSPACE && c != kTAB)
break;
@@ -559,7 +559,7 @@ int Parser::ParseSettings(const std::string& line, std::string::size_type idx,
break;
if (c == ':') // suspicious when part of VALUE
return -1; // TODO(matthewjheaney): verify this behavior
return -1; // TODO(matthewjheaney): verify this behavior
s.value.push_back(c);