forked from OSchip/llvm-project
Remove return type that can trivially be inferred.
llvm-svn: 276794
This commit is contained in:
parent
57c3ddddec
commit
f7791bb9c6
|
@ -849,7 +849,7 @@ Expr ScriptParser::readPrimary() {
|
|||
expect(",");
|
||||
readExpr();
|
||||
expect(")");
|
||||
return [=](uint64_t Dot) -> uint64_t { return alignTo(Dot, E(Dot)); };
|
||||
return [=](uint64_t Dot) { return alignTo(Dot, E(Dot)); };
|
||||
}
|
||||
if (Tok == "DATA_SEGMENT_END") {
|
||||
expect("(");
|
||||
|
|
Loading…
Reference in New Issue