[ELF] - Format. NFC.

llvm-svn: 282395
This commit is contained in:
George Rimar 2016-09-26 11:00:48 +00:00
parent 1559f76257
commit f28210285b
1 changed files with 1 additions and 3 deletions

View File

@ -1491,9 +1491,7 @@ Expr ScriptParser::readPrimary() {
expect("(");
StringRef Tok = next();
expect(")");
return [=](uint64_t Dot) {
return ScriptBase->isDefined(Tok) ? 1 : 0;
};
return [=](uint64_t Dot) { return ScriptBase->isDefined(Tok) ? 1 : 0; };
}
if (Tok == "SEGMENT_START") {
expect("(");